Return-Path: X-Original-To: archive-asf-public-internal@cust-asf2.ponee.io Delivered-To: archive-asf-public-internal@cust-asf2.ponee.io Received: from cust-asf.ponee.io (cust-asf.ponee.io [163.172.22.183]) by cust-asf2.ponee.io (Postfix) with ESMTP id 8EB0E200D04 for ; Mon, 11 Sep 2017 23:30:33 +0200 (CEST) Received: by cust-asf.ponee.io (Postfix) id 8D6141609C4; Mon, 11 Sep 2017 21:30:33 +0000 (UTC) Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by cust-asf.ponee.io (Postfix) with SMTP id D27A91609B7 for ; Mon, 11 Sep 2017 23:30:32 +0200 (CEST) Received: (qmail 46163 invoked by uid 500); 11 Sep 2017 21:30:31 -0000 Mailing-List: contact commits-help@zookeeper.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@zookeeper.apache.org Delivered-To: mailing list commits@zookeeper.apache.org Received: (qmail 46152 invoked by uid 99); 11 Sep 2017 21:30:31 -0000 Received: from git1-us-west.apache.org (HELO git1-us-west.apache.org) (140.211.11.23) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 11 Sep 2017 21:30:31 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id 77236F5769; Mon, 11 Sep 2017 21:30:31 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: hanm@apache.org To: commits@zookeeper.apache.org Message-Id: <310290992fe24508a8fcf0c02a8f3559@git.apache.org> X-Mailer: ASF-Git Admin Mailer Subject: zookeeper git commit: ZOOKEEPER-2777: There is a typo in zk.py which prevents from using/compiling it Date: Mon, 11 Sep 2017 21:30:31 +0000 (UTC) archived-at: Mon, 11 Sep 2017 21:30:33 -0000 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 Reviewers: Frederic Leger, Michael Han 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 Authored: Mon Sep 11 14:29:22 2017 -0700 Committer: Michael Han 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