offlineimap rev 544
"Automatic Subversion Change Mailer" <[email protected]> Mon, 28 Jul 2003 21:50:38 -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-07-28 21:49:49 -0500 (Mon, 28 Jul 2003)
New Revision: 544
Modified:
offlineimap/branches/twisted/offlineimap/imapserver.py
offlineimap/branches/twisted/offlineimap/repository/IMAP.py
Log:
More progress
Diff:
Modified: offlineimap/branches/twisted/offlineimap/imapserver.py
==============================================================================
--- offlineimap/branches/twisted/offlineimap/imapserver.py 2003-07-28 22:10:33 UTC (rev 543)
+++ offlineimap/branches/twisted/offlineimap/imapserver.py 2003-07-29 02:49:49 UTC (rev 544)
@@ -212,6 +212,9 @@
return connection
def _printconnectionstate(self):
+ print "PRINTCONNECTIONSTATE"
+ #import traceback
+ #traceback.print_stack()
print "availableconnections", self.availableconnections
print "assignedconnections", self.assignedconnections
print "waitingforconnections", self.waitingforconnections
@@ -224,6 +227,7 @@
self.assignedconnections.remove(connection)
# And hand it off to the next consumer or queue
self._handleAvailableConnection(connection)
+ return stuff
def _handleAvailableConnection(self, connection):
print "handleAvailableConnection"
Modified: offlineimap/branches/twisted/offlineimap/repository/IMAP.py
==============================================================================
--- offlineimap/branches/twisted/offlineimap/repository/IMAP.py 2003-07-28 22:10:33 UTC (rev 543)
+++ offlineimap/branches/twisted/offlineimap/repository/IMAP.py 2003-07-29 02:49:49 UTC (rev 544)
@@ -139,7 +139,7 @@
print imapobj
d = imapobj.list(self.imapserver.reference, '*')
print "L140"
- d.addCallback(self.getfolders_real)
+ d.addCallback(self._getfolders_real)
print "getfolders_needdata_acquired exiting"
return d