Skip to content

Commit 89ee161

Browse files
author
Richard Jones
committed
fix minor bug in mailgw POP handler
1 parent 44ba317 commit 89ee161

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

roundup/mailgw.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ class node. Any parts of other types are each stored in separate files
7373
an exception, the original message is bounced back to the sender with the
7474
explanatory message given in the exception.
7575
76-
$Id: mailgw.py,v 1.141 2004-01-17 13:49:06 jlgijsbers Exp $
76+
$Id: mailgw.py,v 1.142 2004-01-20 00:06:09 richard Exp $
7777
"""
7878

7979
import string, re, os, mimetools, cStringIO, smtplib, socket, binascii, quopri
@@ -377,7 +377,7 @@ def do_pop(self, server, user='', password='', apop=0):
377377
import getpass, poplib, socket
378378
try:
379379
if not user:
380-
user = raw_input(_('User: '))
380+
user = raw_input('User: ')
381381
if not password:
382382
password = getpass.getpass()
383383
except (KeyboardInterrupt, EOFError):

0 commit comments

Comments
 (0)