Exemplo n.º 1
0
import SrcDemo2Launcher
SrcDemo2Launcher.launch(False)
Exemplo n.º 2
0
import traceback

try:
	import sys
	if '--srcdemo-cmd' not in sys.argv:
		sys.argv.append('--srcdemo-cmd')
	if len(sys.argv) == 2: # Display help if no argument is provided
		sys.argv.append('-h')
	import SrcDemo2Launcher
	SrcDemo2Launcher.launch(False)
except:
	traceback.print_exc()
Exemplo n.º 3
0
import traceback

try:
	import SrcDemo2Launcher
	SrcDemo2Launcher.launch(True)
except:
	traceback.print_exc()
try:
	from SrcDemo2Launcher import is_windows
	if is_windows():
		raw_input('Press Enter to close this window...')
except:
	raw_input('Press Enter to continue.')