offlineimap rev 575

"Automatic Subversion Change Mailer" <[email protected]> Fri, 31 Oct 2003 15:18:57 -0600 (CST)
Newsgroups gmane.mail.imap.offlineimap.subversion
Message-ID <[email protected]>
You are receiving this message because
all commits get sent to this address.

Author: jgoerzen
Date: 2003-10-31 15:18:56 -0600 (Fri, 31 Oct 2003)
New Revision: 575

Modified:
  offlineimap/head/debian/changelog
  offlineimap/head/offlineimap/ui/Noninteractive.py

Log:
Fixed missing _display in Noninteractive.


Diff:
Modified: offlineimap/head/debian/changelog
===================================================================
--- offlineimap/head/debian/changelog	2003-10-11 04:23:47 UTC (rev 574)
+++ offlineimap/head/debian/changelog	2003-10-31 21:18:56 UTC (rev 575)
@@ -1,3 +1,9 @@
+offlineimap (4.0.2) unstable; urgency=low
+
+  * Fixed missing definition of _display in Noninteractive.
+
+ -- John Goerzen <[email protected]>  Fri, 31 Oct 2003 15:18:05 -0600
+
 offlineimap (4.0.1) unstable; urgency=low
 
   * Fixed a typo.  Closes: #201497.

Modified: offlineimap/head/offlineimap/ui/Noninteractive.py
===================================================================
--- offlineimap/head/offlineimap/ui/Noninteractive.py	2003-10-11 04:23:47 UTC (rev 574)
+++ offlineimap/head/offlineimap/ui/Noninteractive.py	2003-10-31 21:18:56 UTC (rev 575)
@@ -23,7 +23,7 @@
     def getpass(s, accountname, config, errmsg = None):
         raise NotImplementedError, "Prompting for a password is not supported in noninteractive mode."
 
-    def _msg(s, msg):
+    def _display(s, msg):
         print msg
         sys.stdout.flush()