openmedialibrary_platform/Darwin/lib/python3.4/venv/__main__.py
2014-09-30 21:25:01 +02:00

10 lines
145 B
Python

import sys
from . import main
rc = 1
try:
main()
rc = 0
except Exception as e:
print('Error: %s' % e, file=sys.stderr)
sys.exit(rc)