13 lines
282 B
Python
13 lines
282 B
Python
#!/usr/bin/env python
|
|
|
|
def main():
|
|
try:
|
|
from src import main
|
|
main.start()
|
|
except Exception, err: # Prevent closing
|
|
import traceback
|
|
traceback.print_exc()
|
|
raw_input("-- Error happened, press enter to close --")
|
|
|
|
if __name__ == '__main__':
|
|
main()
|