flo-token-explorer-historic/flo-token-explorer/bin/flask
2019-04-22 10:42:29 +00:00

12 lines
273 B
Python
Executable File

#!/home/production/deployed/flo-token-explorer/flo-token-explorer/bin/python3.6
# -*- coding: utf-8 -*-
import re
import sys
from flask.cli import main
if __name__ == '__main__':
sys.argv[0] = re.sub(r'(-script\.pyw?|\.exe)?$', '', sys.argv[0])
sys.exit(main())