summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTristan de Cacqueray <tdecacqu@redhat.com>2019-01-13 13:53:01 +0000
committerStephen SORRIAUX <stephen.sorriaux@gmail.com>2019-01-13 14:53:01 +0100
commit1452a48f3070fe9034314476a6fdb94ca206dede (patch)
tree9a004e1d5809091deb74b19710cddbc42d693ce2
parent4242da801e8da7b76d7e88e37c3948f97a2b5aae (diff)
downloadkazoo-1452a48f3070fe9034314476a6fdb94ca206dede.tar.gz
fix(client): add missing paren (#550)
-rw-r--r--kazoo/client.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/kazoo/client.py b/kazoo/client.py
index afff0dd..0a50018 100644
--- a/kazoo/client.py
+++ b/kazoo/client.py
@@ -1224,7 +1224,7 @@ class KazooClient(object):
raise TypeError("Invalid type for 'path' (string expected)")
if isinstance(acls, ACL) or not isinstance(acls, (tuple, list)):
raise TypeError("Invalid type for 'acl' (acl must be a tuple/list"
- " of ACL's")
+ " of ACL's)")
if not isinstance(version, int):
raise TypeError("Invalid type for 'version' (int expected)")