File: run_game.py

package info (click to toggle)
whichwayisup 0.7.9-2
  • links: PTS, VCS
  • area: main
  • in suites: squeeze, wheezy
  • size: 1,604 kB
  • ctags: 240
  • sloc: python: 2,368; makefile: 49; sh: 2
file content (13 lines) | stat: -rw-r--r-- 264 bytes parent folder | download | duplicates (9)
1
2
3
4
5
6
7
8
9
10
11
12
13
#! /usr/bin/env python

import sys
import os
try:
    libdir = os.path.abspath(os.path.join(os.path.dirname(__file__), 'lib'))
    sys.path.insert(0, libdir)
except:
    # probably running inside py2exe which doesn't set __file__
    pass

import main
main.main()