summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMatthias Schiffer <mschiffer@universe-factory.net>2013-04-18 14:24:04 +0200
committerMatthias Schiffer <mschiffer@universe-factory.net>2013-04-18 14:24:04 +0200
commitb26615eaa13a858ff9b26450af9ce10184555181 (patch)
treea9aceedf49b841dd8d9ec1adba7b681cae611dbd
parent63e84e940ef8fb417076ea59906ed5b5b3b9471e (diff)
downloadpylock-b26615eaa13a858ff9b26450af9ce10184555181.tar
pylock-b26615eaa13a858ff9b26450af9ce10184555181.zip
Add development pylock starter
-rwxr-xr-xpylock.py10
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()