Skip to content

Commit

Permalink
Fix conditional for verbose ouput
Browse files Browse the repository at this point in the history
Signed-off-by: Anmol Shrivastava <[email protected]>
  • Loading branch information
colemole9595 authored and umarcor committed Aug 18, 2022
1 parent 3e5c886 commit b2b8c26
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion fuzzers/int_maketodo.py
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,7 @@ def maketodo(
verbose and print(
"pipfile todo sample: %s" % list(todos)[0], file=sys.stderr)

if 0 and verbose:
if verbose:
print("TODOs", file=sys.stderr)
for todo in sorted(list(todos)):
print(' %s' % todo)
Expand Down

0 comments on commit b2b8c26

Please sign in to comment.