diff --git a/pidlock.py b/pidlock.py index 30972c7..bc539f8 100755 --- a/pidlock.py +++ b/pidlock.py @@ -12,7 +12,7 @@ from contextlib import contextmanager -VERSION = 'v1.0.1' +VERSION = 'v1.0.2' class PIDLockedException(Exception): def __init__(self, name, pid): diff --git a/setup.py b/setup.py old mode 100644 new mode 100755 index 49ba286..919935e --- a/setup.py +++ b/setup.py @@ -48,7 +48,7 @@ packages=find_packages(exclude=['contrib', 'docs', 'tests']), entry_points={ 'console_scripts': [ - 'pidlock = pidlock:cli_lock', + 'pidlock = pidlock:pidlock_cli', ] } )