gw 306 B

1234567891011121314
  1. #!/usr/bin/env python3
  2. import sys, os
  3. if sys.version_info < (3,0,0):
  4. print('** FATAL ERROR: Greaseweazle requires Python 3')
  5. sys.exit(1)
  6. # Update the search path and import the real script
  7. sys.path[0] = os.path.join(sys.path[0], "scripts")
  8. import gw
  9. # Execute the real script
  10. gw.main(sys.argv)