1
0
mirror of https://github.com/f4exb/sdrangel.git synced 2024-11-22 08:04:49 -05:00

Compare commits

...

2 Commits

Author SHA1 Message Date
Edouard Griffiths
fcd43df711
Merge pull request #2225 from james-pcdr/patch-2
Update scanner.py: fix print to stderr
2024-08-03 03:00:40 +02:00
james-pcdr
4cf2c0b7c7
Update scanner.py: fix print to stderr 2024-07-31 13:33:28 -04:00

View File

@ -373,7 +373,7 @@ def main():
pass pass
except Exception as ex: except Exception as ex:
tb = traceback.format_exc() tb = traceback.format_exc()
print >> sys.stderr, tb print(tb, file=sys.stderr)
if __name__ == "__main__": if __name__ == "__main__":