Add development pylock starter

This commit is contained in:
Matthias Schiffer 2013-04-18 14:24:04 +02:00
parent 63e84e940e
commit b26615eaa1

10
pylock.py Executable file
View file

@ -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()