sdr icon indicating copy to clipboard operation
sdr copied to clipboard

Python3

Open henrikssn opened this issue 4 years ago • 2 comments

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

henrikssn avatar Feb 07 '21 12:02 henrikssn

$ 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)?

henrikssn avatar Feb 07 '21 12:02 henrikssn

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

Maxvi33 avatar Jun 29 '22 09:06 Maxvi33