view scripts/sypikslang @ 267:a534629f490f default tip

Fix urls
author Neil Muller <drnlmuller@gmail.com>
date Tue, 17 Mar 2020 22:39:54 +0200
parents 7eead0d85497
children
line wrap: on
line source

#! /usr/bin/env python

import sys
import os.path


if '__file__' in globals():
    # Add ourselves to the path.
    # We protect against missing __file__ in Windows executable scripts
    # (in these cases, assume we are already on the path)
    sys.path.insert(0, os.path.dirname(os.path.dirname(__file__)))

from gamelib import main
main.main()