gw.py 175 B

123456789
  1. import sys, os
  2. # Update the search path and import the real script
  3. sys.path[0] = os.path.join(sys.path[0], "scripts")
  4. import gw
  5. # Execute the real script
  6. gw.main(sys.argv)