gw.py 198 B

12345678910
  1. #!/usr/bin/env python3
  2. import sys, os
  3. # Update the search path and import the real script
  4. sys.path[0] = os.path.join(sys.path[0], "scripts")
  5. import gw
  6. # Execute the real script
  7. gw.main(sys.argv)