diff options
author | Rael <rael.gc@gmail.com> | 2015-10-17 07:24:20 -0300 |
---|---|---|
committer | Rael <rael.gc@gmail.com> | 2015-10-17 07:24:20 -0300 |
commit | 503f33a6908862506c374a3933c39117143a54b2 (patch) | |
tree | 03483f4a8d6cca01f92620bcffde59ddd3495da8 /scudcloud-1.0/scudcloud | |
parent | 8d707a187d06355d5b75a86987eeb1563fa3c1f9 (diff) | |
download | scudcloud-503f33a6908862506c374a3933c39117143a54b2.zip scudcloud-503f33a6908862506c374a3933c39117143a54b2.tar.gz scudcloud-503f33a6908862506c374a3933c39117143a54b2.tar.bz2 |
If client is desktop, Slack will open links directly...
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) |