henrythasler / sdr

collection of software defined radio (SDR) stuff
MIT License
29 stars 5 forks source link

Python3 #2

Open henrikssn opened 3 years ago

henrikssn commented 3 years ago

somfy/sniff.py seems to not be python3 compatible and python2.7 is EOL.

henrikssn commented 3 years ago
$ python3 --version
Python 3.7.3
$ python3 sniff.py
  File "sniff.py", line 71
    print "Clock Sync:", hw_sync, clock
                      ^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print("Clock Sync:", hw_sync, clock)?
Maxvi33 commented 2 years ago

Hello, just add "( )" and it's ok :)