mirror of
https://github.com/HelloZeroNet/ZeroNet.git
synced 2023-12-14 04:33:03 +01:00
9 lines
202 B
Python
9 lines
202 B
Python
#!/usr/bin/env python
|
|
|
|
try:
|
|
from src import main
|
|
main.start()
|
|
except Exception, err: # Prevent closing
|
|
import traceback
|
|
traceback.print_exc()
|
|
raw_input("-- Error happend, press enter to close --")
|