1
0
mirror of https://github.com/f4exb/sdrangel.git synced 2024-11-10 18:43:28 -05:00

Update scanner.py: fix print to stderr

This commit is contained in:
james-pcdr 2024-07-31 13:33:28 -04:00 committed by GitHub
parent 78b73ae529
commit 4cf2c0b7c7
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -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__":