1
0
mirror of https://github.com/f4exb/sdrangel.git synced 2024-09-21 12:26:34 -04:00

Merge pull request #2225 from james-pcdr/patch-2

Update scanner.py: fix print to stderr
This commit is contained in:
Edouard Griffiths 2024-08-03 03:00:40 +02:00 committed by GitHub
commit fcd43df711
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

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