diff options
author | Kali Kaneko <kali@leap.se> | 2016-02-11 13:34:46 -0800 |
---|---|---|
committer | Kali Kaneko <kali@leap.se> | 2016-04-18 16:17:11 -0400 |
commit | 9affaaacb18598fc98be669ef1c086b0afe4ad91 (patch) | |
tree | 3aca253d3bb69a090907f62e3b8f216455e513b0 /pkg/osx/pidfile.py | |
parent | e9e9abc4ec26be29b3a6b09e6a0b67786269183b (diff) |
[refactor] cleanup helper usage to adapt to new one
also cleanups build process
Diffstat (limited to 'pkg/osx/pidfile.py')
-rw-r--r-- | pkg/osx/pidfile.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/pkg/osx/pidfile.py b/pkg/osx/pidfile.py index 4517ee0e..68f7b2ac 100644 --- a/pkg/osx/pidfile.py +++ b/pkg/osx/pidfile.py @@ -17,7 +17,7 @@ from __future__ import (absolute_import, unicode_literals) from lockfile.pidlockfile import PIDLockFile - + class TimeoutPIDLockFile(PIDLockFile, object): """ Lockfile with default timeout, implemented as a Unix PID file. @@ -59,7 +59,7 @@ class TimeoutPIDLockFile(PIDLockFile, object): timeout = self.acquire_timeout super(TimeoutPIDLockFile, self).acquire(timeout, *args, **kwargs) - + # Local variables: # coding: utf-8 # mode: python |