Fix logic reversal error in our interactive/debug mode identification
This commit is contained in:
parent
afce4adaea
commit
8c8c00586d
1 changed files with 1 additions and 1 deletions
|
@ -6,7 +6,7 @@ import sys
|
||||||
# Import our local settings management.
|
# Import our local settings management.
|
||||||
import settings
|
import settings
|
||||||
|
|
||||||
if not hasattr(sys, 'ps1'):
|
if hasattr(sys, 'ps1'):
|
||||||
import copy
|
import copy
|
||||||
debug = True
|
debug = True
|
||||||
else:
|
else:
|
||||||
|
|
Loading…
Reference in a new issue