From 1af12e99a176efadb28ce89a41e7b4421611c57f Mon Sep 17 00:00:00 2001 From: John Goerzen Date: Thu, 5 Jul 2007 14:22:57 +0100 Subject: [PATCH] Tweaks to machine --- offlineimap/ui/Machine.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/offlineimap/ui/Machine.py b/offlineimap/ui/Machine.py index ed551cb..d02bbbc 100644 --- a/offlineimap/ui/Machine.py +++ b/offlineimap/ui/Machine.py @@ -25,7 +25,7 @@ protocol = '6.0.0' class MachineUI(UIBase): def __init__(s, config, verbose = 0): UIBase.__init__(s, config, verbose) - s.safechars=" ;,./-_=+" + s.safechars=" ;,./-_=+()[]" s.iswaiting = 0 s.outputlock = Lock() s._printData('__init__', protocol) @@ -137,7 +137,7 @@ class MachineUI(UIBase): ds)) def threadException(s, thread): - print s.getThreadExceptionString(thread) #FIXME: remove + print s.getThreadExceptionString(thread) s._printData('threadException', "%s\n%s" % \ (thread.getName(), s.getThreadExceptionString(thread))) s.delThreadDebugLog(thread)