Skip to content

Commit d8de37f

Browse files
committed
Fix variable initialization
1 parent 19ba823 commit d8de37f

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

utils/smoketest.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -82,8 +82,7 @@ def tester(commands):
8282

8383
TESTLOG = 'conda-testlog.txt'
8484

85-
if len(sys.argv) > 1:
86-
options = True
85+
options = True if len(sys.argv) > 1 else False
8786

8887
if options and 'new' in sys.argv:
8988
if exists(TESTLOG):

0 commit comments

Comments
 (0)