/offlineimap/head: changeset 575

Fixed missing _display in Noninteractive.
This commit is contained in:
jgoerzen 2003-11-01 04:18:56 +01:00
parent 69433259cd
commit c51c5c6596
2 changed files with 7 additions and 1 deletions

View File

@ -1,3 +1,9 @@
offlineimap (4.0.2) unstable; urgency=low
* Fixed missing definition of _display in Noninteractive.
-- John Goerzen <jgoerzen@complete.org> Fri, 31 Oct 2003 15:18:05 -0600
offlineimap (4.0.1) unstable; urgency=low offlineimap (4.0.1) unstable; urgency=low
* Fixed a typo. Closes: #201497. * Fixed a typo. Closes: #201497.

View File

@ -23,7 +23,7 @@ class Basic(UIBase):
def getpass(s, accountname, config, errmsg = None): def getpass(s, accountname, config, errmsg = None):
raise NotImplementedError, "Prompting for a password is not supported in noninteractive mode." raise NotImplementedError, "Prompting for a password is not supported in noninteractive mode."
def _msg(s, msg): def _display(s, msg):
print msg print msg
sys.stdout.flush() sys.stdout.flush()