From a40e5069080b337956bef039a9bfcb309910fd06 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 8aebb23..9e23fdd 100644 --- a/offlineimap/init.py +++ b/offlineimap/init.py @@ -213,7 +213,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()