29 Dec
2016
29 Dec
'16
11:28 a.m.
On Thu, Dec 29, 2016 at 11:07 AM, Aaron Traas via chirp_devel chirp_devel@intrepid.danplanet.com wrote:
My strategy was going to be what you suggested. I'll do a separate implementation of the `chirp.ui` package, and try to keep it as code compatible with the GTK. I'm probably going to start by renaming the ui package to `ui-gtk`, and have a parallel `ui-wx`. Once we decide to merge, we can rename it back to `ui`.
One small nitpick, hyphens are invalid syntax in Python:
import ui-gtk
File "<stdin>", line 1 import ui-gtk ^ SyntaxError: invalid syntax
https://www.python.org/dev/peps/pep-0008/#package-and-module-names
Tom