Ignore the args and args errors on Mac

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@25228 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Robin Dunn
2004-01-18 03:38:34 +00:00
parent b8628a0e2e
commit 1c01bc8e05

View File

@@ -931,21 +931,23 @@ class App(wxApp):
global debug
# Process comand-line
try:
opts = args = None
opts, args = getopt.getopt(sys.argv[1:], 'dhiv')
for o,a in opts:
if o == '-h':
usage()
sys.exit(0)
elif o == '-d':
debug = True
elif o == '-v':
print 'XRCed version', version
sys.exit(0)
except getopt.GetoptError:
if wxPlatform != '__WXMAC__': # macs have some extra parameters
print >> sys.stderr, 'Unknown option'
usage()
sys.exit(1)
for o,a in opts:
if o == '-h':
usage()
sys.exit(0)
elif o == '-d':
debug = True
elif o == '-v':
print 'XRCed version', version
sys.exit(0)
self.SetAppName('xrced')
# Settings