/offlineimap/head: changeset 285

Adding missing import os to imapserver.py. Thanks to John Wiegley for
catching that. Updated changelog
This commit is contained in:
jgoerzen
2002-11-06 02:38:11 +01:00
parent a2720a4d21
commit f7c4889918
3 changed files with 34 additions and 1 deletions

View File

@ -19,7 +19,7 @@
from offlineimap import imaplib, imaputil, threadutil
from offlineimap.ui import UIBase
from threading import *
import thread, hmac
import thread, hmac, os
class UsefulIMAPMixIn: