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:
parent
deab62fbd8
commit
f2ad4bc230
@ -219,7 +219,7 @@ class OfflineImap:
|
|||||||
if not ('thread' in options.debugtype.split(',') \
|
if not ('thread' in options.debugtype.split(',') \
|
||||||
and options.singlethreading):
|
and options.singlethreading):
|
||||||
ui._msg("Debug mode: Forcing to singlethreaded.")
|
ui._msg("Debug mode: Forcing to singlethreaded.")
|
||||||
options.singlethreaded = True
|
options.singlethreading = True
|
||||||
|
|
||||||
for type in options.debugtype.split(','):
|
for type in options.debugtype.split(','):
|
||||||
type = type.strip()
|
type = type.strip()
|
||||||
|
Loading…
Reference in New Issue
Block a user