view scripts/skaapsteker @ 619:4ffa9d159588

Some coordinate operators, to reduce foo_x, foo_y everywhere.
author Jeremy Thurgood <firxen@gmail.com>
date Fri, 06 May 2011 16:37:43 +0200
parents b7c432ce1b80
children
line wrap: on
line source

#!/usr/bin/env python

import os.path
import sys

if '__file__' in globals():
    # protect against missing __file__ in Windows executable scripts
    # (in these cases, assume skaapsteker is already on the path)
    sys.path.insert(0, os.path.dirname(os.path.dirname(__file__)))

import skaapsteker.__main__
if __name__ == "__main__":
    skaapsteker.__main__.main()