summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 436d07d)
raw | patch | inline | side by side (parent: 436d07d)
author | richard <richard@57a73879-2fb5-44c3-a270-3262357dd7e2> | |
Tue, 20 Jan 2004 00:06:09 +0000 (00:06 +0000) | ||
committer | richard <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 | patch | blob | history |
diff --git a/roundup/mailgw.py b/roundup/mailgw.py
index c76706c4f586414e459e1aa23fcb0a0720e77b0b..208cbb86ae85a4a21d46f6191ddd0ac20e6c89f3 100644 (file)
--- a/roundup/mailgw.py
+++ b/roundup/mailgw.py
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
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):