From f2ad4bc230ef70dfea0cd1c381d316dd83f0c038 Mon Sep 17 00:00:00 2001 From: Sebastian Spaeth Date: Thu, 5 May 2011 11:15:51 +0200 Subject: [PATCH] Fix typo to force singlethreading in debug mode A typo prevented us from enforcing singlethreading mode when selecting debugging. Signed-off-by: Sebastian Spaeth Signed-off-by: Nicolas Sebrecht --- offlineimap/init.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/offlineimap/init.py b/offlineimap/init.py index 287bbbf..0aaa06e 100644 --- a/offlineimap/init.py +++ b/offlineimap/init.py @@ -219,7 +219,7 @@ class OfflineImap: if not ('thread' in options.debugtype.split(',') \ and options.singlethreading): ui._msg("Debug mode: Forcing to singlethreaded.") - options.singlethreaded = True + options.singlethreading = True for type in options.debugtype.split(','): type = type.strip()