diff --git a/src/simpleflock.py b/src/simpleflock.py index 5601a84..19cfd49 100644 --- a/src/simpleflock.py +++ b/src/simpleflock.py @@ -4,7 +4,7 @@ import fcntl import errno -class SimpleFlock: +class SimpleFlock(object): """Provides the simplest possible interface to flock-based file locking. Intended for use with the `with` syntax. It will create/truncate/delete the lock file as necessary.""" def __init__(self, path, timeout = None):