summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/etcd/lock.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/etcd/lock.py b/src/etcd/lock.py
index c862243..9068576 100644
--- a/src/etcd/lock.py
+++ b/src/etcd/lock.py
@@ -9,7 +9,7 @@ class Lock(object):
Lock object using etcd's lock module.
"""
- def __init__(self, client, key, ttl=None, value=None):
+ def __init__(self, client, key, ttl=0, value=None):
"""
Initialize a lock object.
@@ -27,7 +27,7 @@ class Lock(object):
if not key.startswith('/'):
key = '/' + key
self.key = key
- self.ttl = ttl or 0
+ self.ttl = ttl
self.value = value
self._index = None