diff options
Diffstat (limited to 'scudcloud-1.0/scudcloud')
-rwxr-xr-x | scudcloud-1.0/scudcloud | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scudcloud-1.0/scudcloud b/scudcloud-1.0/scudcloud index 6b07c37..2010636 100755 --- a/scudcloud-1.0/scudcloud +++ b/scudcloud-1.0/scudcloud @@ -44,7 +44,7 @@ def lock(): runtime_dir = os.environ['XDG_RUNTIME_DIR'] else: runtime_dir = tempfile.gettempdir() - pid_file = runtime_dir+'/'+Resources.APP_NAME+'.pid' + pid_file = runtime_dir+'/scudcloud.pid' fp = open(pid_file, 'w') try: fcntl.lockf(fp, fcntl.LOCK_EX | fcntl.LOCK_NB) |