repository/*: replace UIBase.getglobalui() with getglobalui()
The latter is much shorter and looks nicer. UIBase was a very weird name and with this patch, we don't need to use (or see) it from higher level code anymore. Signed-off-by: Sebastian Spaeth <Sebastian@SSpaeth.de> Signed-off-by: Nicolas Sebrecht <nicolas.s-dev@laposte.net>
This commit is contained in:
parent
c6d6dc814f
commit
67089248da
@ -17,7 +17,7 @@
|
||||
# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
||||
|
||||
from offlineimap import CustomConfig
|
||||
from offlineimap.ui import UIBase
|
||||
from offlineimap.ui import getglobalui
|
||||
import os.path
|
||||
import sys
|
||||
|
||||
@ -164,7 +164,7 @@ class BaseRepository(CustomConfig.ConfigHelperMixin):
|
||||
for copyfolder in copyfolders:
|
||||
copyfolder.makefolder(key.replace(dest.getsep(), copyfolder.getsep()))
|
||||
except:
|
||||
UIBase.getglobalui().warn("ERROR Attempting to make folder " \
|
||||
getglobalui().warn("ERROR Attempting to make folder " \
|
||||
+ key + ":" +str(sys.exc_info()[1]))
|
||||
|
||||
|
||||
|
@ -18,7 +18,7 @@
|
||||
|
||||
from Base import BaseRepository
|
||||
from offlineimap import folder, imaputil
|
||||
from offlineimap.ui import UIBase
|
||||
from offlineimap.ui import getglobalui
|
||||
from mailbox import Maildir
|
||||
import os
|
||||
from stat import *
|
||||
@ -31,7 +31,7 @@ class MaildirRepository(BaseRepository):
|
||||
|
||||
self.root = self.getlocalroot()
|
||||
self.folders = None
|
||||
self.ui = UIBase.getglobalui()
|
||||
self.ui = getglobalui()
|
||||
self.debug("MaildirRepository initialized, sep is " + repr(self.getsep()))
|
||||
self.folder_atimes = []
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user