diff options
author | Matthias Schiffer <mschiffer@universe-factory.net> | 2013-04-18 14:24:04 +0200 |
---|---|---|
committer | Matthias Schiffer <mschiffer@universe-factory.net> | 2013-04-18 14:24:04 +0200 |
commit | b26615eaa13a858ff9b26450af9ce10184555181 (patch) | |
tree | a9aceedf49b841dd8d9ec1adba7b681cae611dbd | |
parent | 63e84e940ef8fb417076ea59906ed5b5b3b9471e (diff) | |
download | pylock-b26615eaa13a858ff9b26450af9ce10184555181.tar pylock-b26615eaa13a858ff9b26450af9ce10184555181.zip |
Add development pylock starter
-rwxr-xr-x | pylock.py | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/pylock.py b/pylock.py new file mode 100755 index 0000000..85579bb --- /dev/null +++ b/pylock.py @@ -0,0 +1,10 @@ +#!/usr/bin/env python3 + +import os +import sys + +sys.path.insert(0, os.path.dirname(__file__)) + +from pylock import Main + +Main.main() |