Bug in how an except statement was written (submitted by Piers himself).

This commit is contained in:
Guido van Rossum 1998-08-06 02:59:07 +00:00
parent d807879b31
commit de23cb0e7e
1 changed files with 1 additions and 1 deletions

View File

@ -240,7 +240,7 @@ class POP3:
"""Signoff: commit changes on server, unlock mailbox, close connection."""
try:
resp = self._shortcmd('QUIT')
except error_proto(val):
except error_proto, val:
resp = val
self.file.close()
self.sock.close()