X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/c38400d026f8f0f6d3f149d591b9a6a8dcbcff7c..e3a630bb68247e39c04864cdcdb2178ded515f03:/wxPython/demo/run.py diff --git a/wxPython/demo/run.py b/wxPython/demo/run.py index 99d76f5745..fda545c5b0 100755 --- a/wxPython/demo/run.py +++ b/wxPython/demo/run.py @@ -115,9 +115,7 @@ def main(argv): print "Please specify a demo module name on the command-line" raise SystemExit - name = argv[1] - if name[-3:] == '.py': - name = name[:-3] + name, ext = os.path.splitext(argv[1]) module = __import__(name)