Fix typo to force singlethreading in debug mode

A typo prevented us from enforcing singlethreading mode when selecting debugging.

Signed-off-by: Sebastian Spaeth <Sebastian@SSpaeth.de>
Signed-off-by: Nicolas Sebrecht <nicolas.s-dev@laposte.net>
This commit is contained in:
Sebastian Spaeth 2011-05-05 11:15:51 +02:00 committed by Nicolas Sebrecht
parent deab62fbd8
commit f2ad4bc230
1 changed files with 1 additions and 1 deletions

View File

@ -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()