Code

fix minor bug in mailgw POP handler
authorrichard <richard@57a73879-2fb5-44c3-a270-3262357dd7e2>
Tue, 20 Jan 2004 00:06:09 +0000 (00:06 +0000)
committerrichard <richard@57a73879-2fb5-44c3-a270-3262357dd7e2>
Tue, 20 Jan 2004 00:06:09 +0000 (00:06 +0000)
git-svn-id: http://svn.roundup-tracker.org/svnroot/roundup/trunk@2050 57a73879-2fb5-44c3-a270-3262357dd7e2

roundup/mailgw.py

index c76706c4f586414e459e1aa23fcb0a0720e77b0b..208cbb86ae85a4a21d46f6191ddd0ac20e6c89f3 100644 (file)
@@ -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):