mirror of
https://github.com/wxWidgets/Phoenix.git
synced 2025-09-05 17:30:26 +02:00
11 lines
168 B
Python
Executable File
11 lines
168 B
Python
Executable File
#!/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()
|