Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions MAVProxy/modules/lib/optparse_gui/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,11 @@
__version__ = 0.1
__revision__ = '$Id$'

try:
unicode # Removed in Python 3
except NameError:
unicode = str

class OptparseDialog( wx.Dialog ):
'''The dialog presented to the user with dynamically generated controls,
to fill in the required options.
Expand Down