Repository: qpid-proton Updated Branches: refs/heads/proton-go e3c434d41 -> cb868e927 (forced update)
PROTON-1000: remove extraneous semi-colons Project: http://git-wip-us.apache.org/repos/asf/qpid-proton/repo Commit: http://git-wip-us.apache.org/repos/asf/qpid-proton/commit/911e9a23 Tree: http://git-wip-us.apache.org/repos/asf/qpid-proton/tree/911e9a23 Diff: http://git-wip-us.apache.org/repos/asf/qpid-proton/diff/911e9a23 Branch: refs/heads/proton-go Commit: 911e9a236f9c2b1862201a0d88e301b339725ca7 Parents: ed78546 Author: Gordon Sim <[email protected]> Authored: Wed Sep 23 09:39:11 2015 +0100 Committer: Gordon Sim <[email protected]> Committed: Wed Sep 23 09:39:28 2015 +0100 ---------------------------------------------------------------------- proton-c/bindings/python/proton/utils.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/qpid-proton/blob/911e9a23/proton-c/bindings/python/proton/utils.py ---------------------------------------------------------------------- diff --git a/proton-c/bindings/python/proton/utils.py b/proton-c/bindings/python/proton/utils.py index 197e60e..8a70299 100644 --- a/proton-c/bindings/python/proton/utils.py +++ b/proton-c/bindings/python/proton/utils.py @@ -240,8 +240,8 @@ class BlockingConnection(Handler): finally: self.container.timeout = container_timeout if self.disconnected: - self.container.stop(); - raise ConnectionException("Connection %s disconnected" % self.url); + self.container.stop() + raise ConnectionException("Connection %s disconnected" % self.url) def on_link_remote_close(self, event): if event.link.state & Endpoint.LOCAL_ACTIVE: --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
