knxd / PyKNyX

Python KNX Framework
GNU General Public License v3.0
10 stars 7 forks source link

Bug with print statement #4

Closed Golpe82 closed 3 years ago

Golpe82 commented 3 years ago

Issue: when running python3 pyknyx/scripts/pyknyx-group.py --help, this error ocurrs: File "pyknyx/scripts/pyknyx-group.py", line 399 print gad,tab ^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(gad,tab)?

Suggestion: print(gad, tab) instead of: print gad,tab

Golpe82 commented 3 years ago

Fix already merged