Skip to content

Commit

Permalink
Merge pull request #2225 from james-pcdr/patch-2
Browse files Browse the repository at this point in the history
Update scanner.py: fix print to stderr
  • Loading branch information
f4exb authored Aug 3, 2024
2 parents ff7c063 + 4cf2c0b commit fcd43df
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 fcd43df

Please sign in to comment.