Merge branch 'this-n-that' into wxPy-4.0.x

(cherry picked from commit 2e5430d57f)
This commit is contained in:
Robin Dunn
2018-05-07 11:22:08 -07:00
parent e64deef9d2
commit 09de554e1b
6 changed files with 64 additions and 16 deletions

View File

@@ -1,4 +1,10 @@
#!/usr/bin/env python
import sys
import os
import Main
demoDir = os.path.dirname(os.path.abspath(__file__))
sys.path.insert(0, demoDir)
os.chdir(demoDir)
Main.main()