From: richard Date: Tue, 20 Jan 2004 00:06:09 +0000 (+0000) Subject: fix minor bug in mailgw POP handler X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=44241e9cb184ce23a20d54b8eaebf871c37b3929;p=roundup.git fix minor bug in mailgw POP handler git-svn-id: http://svn.roundup-tracker.org/svnroot/roundup/trunk@2050 57a73879-2fb5-44c3-a270-3262357dd7e2 --- diff --git a/roundup/mailgw.py b/roundup/mailgw.py index c76706c..208cbb8 100644 --- a/roundup/mailgw.py +++ b/roundup/mailgw.py @@ -73,7 +73,7 @@ are calling the create() method to create a new node). If an auditor raises 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 @@ class MailGW: 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):