Skip to content

Commit

Permalink
fix(client): add missing paren (#550)
Browse files Browse the repository at this point in the history
  • Loading branch information
TristanCacqueray authored and StephenSorriaux committed Jan 13, 2019
1 parent 4242da8 commit 1452a48
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion kazoo/client.py
Original file line number Diff line number Diff line change
Expand Up @@ -1224,7 +1224,7 @@ def set_acls_async(self, path, acls, version=-1):
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)")

Expand Down

0 comments on commit 1452a48

Please sign in to comment.