flo-token-explorer-historic/tokenexplorervenv/bin/flask
2019-04-15 14:29:38 +00:00

12 lines
256 B
Python
Executable File

#!/home/vivek/Dev/rmt-explorer/tokenexplorervenv/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())