offlineimap rev 570

"Automatic Subversion Change Mailer" <[email protected]> Fri, 15 Aug 2003 16:56:50 -0500 (CDT)
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-08-15 16:56:46 -0500 (Fri, 15 Aug 2003)
New Revision: 570

Modified:
  offlineimap/branches/twisted/offlineimap/imaputil.py

Log:
Removed old rd call from imaputil


Diff:
Modified: offlineimap/branches/twisted/offlineimap/imaputil.py
===================================================================
--- offlineimap/branches/twisted/offlineimap/imaputil.py	2003-08-15 18:50:54 UTC (rev 569)
+++ offlineimap/branches/twisted/offlineimap/imaputil.py	2003-08-15 21:56:46 UTC (rev 570)
@@ -1,5 +1,5 @@
 # IMAP utility module
-# Copyright (C) 2002 John Goerzen
+# Copyright (C) 2002, 2003 John Goerzen
 # <[email protected]>
 #
 #    This program is free software; you can redistribute it and/or modify
@@ -35,12 +35,6 @@
         msg.append(str(arg))
     UIBase.getglobalui().debug('imap', " ".join(msg))
 
-def rd(val):
-    """Utility function to retern a deferred with its value set to val."""
-    d = defer.Deferred()
-    d.callback(val)
-    return d
-
 def options2hash(list):
     debug("options2hash called with input:", list)
     retval = {}