Skip to content

Commit

Permalink
Update scanner.py: fix print to stderr
Browse files Browse the repository at this point in the history
  • Loading branch information
james-pcdr authored Jul 31, 2024
1 parent 78b73ae commit 4cf2c0b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion swagger/sdrangel/examples/scanner.py
Original file line number Diff line number Diff line change
Expand Up @@ -373,7 +373,7 @@ def main():
pass
except Exception as ex:
tb = traceback.format_exc()
print >> sys.stderr, tb
print(tb, file=sys.stderr)


if __name__ == "__main__":
Expand Down

0 comments on commit 4cf2c0b

Please sign in to comment.