Mercurial > p > roundup > code
diff roundup/mailgw.py @ 1982:23e5796a6b45
fix minor bug in mailgw POP handler
| author | Richard Jones <richard@users.sourceforge.net> |
|---|---|
| date | Tue, 20 Jan 2004 00:06:09 +0000 |
| parents | 30a444b7b212 |
| children | fc52d57c6c3e |
line wrap: on
line diff
--- a/roundup/mailgw.py Tue Jan 20 00:05:46 2004 +0000 +++ b/roundup/mailgw.py Tue Jan 20 00:06:09 2004 +0000 @@ -73,7 +73,7 @@ an exception, the original message is bounced back to the sender with the explanatory message given in the exception. -$Id: mailgw.py,v 1.141 2004-01-17 13:49:06 jlgijsbers Exp $ +$Id: mailgw.py,v 1.142 2004-01-20 00:06:09 richard Exp $ """ import string, re, os, mimetools, cStringIO, smtplib, socket, binascii, quopri @@ -377,7 +377,7 @@ import getpass, poplib, socket try: if not user: - user = raw_input(_('User: ')) + user = raw_input('User: ') if not password: password = getpass.getpass() except (KeyboardInterrupt, EOFError):
