Repository: zookeeper
Updated Branches:
refs/heads/branch-3.5 88c1c9347 -> ba115830e
ZOOKEEPER-2777: There is a typo in zk.py which prevents from using/compiling it
Author: Nikhil Bhide <nikhilbhide15@gmail.com>
Reviewers: Frederic Leger, Michael Han <hanm@apache.org>
Closes #367 from nikhilbhide/ZOOKEEPER-2777
Project: http://git-wip-us.apache.org/repos/asf/zookeeper/repo
Commit: http://git-wip-us.apache.org/repos/asf/zookeeper/commit/ba115830
Tree: http://git-wip-us.apache.org/repos/asf/zookeeper/tree/ba115830
Diff: http://git-wip-us.apache.org/repos/asf/zookeeper/diff/ba115830
Branch: refs/heads/branch-3.5
Commit: ba115830e4016dba354ba407ae9f3091795213b8
Parents: 88c1c93
Author: Nikhil Bhide <nikhilbhide15@gmail.com>
Authored: Mon Sep 11 14:29:22 2017 -0700
Committer: Michael Han <hanm@apache.org>
Committed: Mon Sep 11 14:30:23 2017 -0700
----------------------------------------------------------------------
src/contrib/zkpython/src/python/zk.py | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------
http://git-wip-us.apache.org/repos/asf/zookeeper/blob/ba115830/src/contrib/zkpython/src/python/zk.py
----------------------------------------------------------------------
diff --git a/src/contrib/zkpython/src/python/zk.py b/src/contrib/zkpython/src/python/zk.py
index 9c0f374..24986e3 100755
--- a/src/contrib/zkpython/src/python/zk.py
+++ b/src/contrib/zkpython/src/python/zk.py
@@ -52,7 +52,7 @@ except:
pass
def pp_zk(handle,root, indent = 0):
- """Pretty print(a zookeeper tree, starting at root""")
+ """Pretty print(a zookeeper tree, starting at root)"""
def make_path(child):
if root == "/":
return "/" + child
|