Actions
Bug #8475
closedPython3 Syntax errors
Start date:
11/25/2020
Due date:
% Done:
0%
Estimated time:
Chirp Version:
daily
Model affected:
(All models)
Platform:
All
I read the instructions above:
Description
Looks like the current py3 branch has 2 syntax errors. The first I discovered was in chirp/ui/mainapp.py on line 1140.
print query
needs to be
print(query)
Also, in chirp/drivers/vx6.py on line 874
except Exception, e:
needs to be
except (Exception, e):
After these changes were made py3 worked as I expected it to.
Files
Actions