Repository: qpid-proton Updated Branches: refs/heads/master d5c11f3a9 -> d9bc3635f
PROTON-1417: fix TypeError when address is already in use This closes #96 Project: http://git-wip-us.apache.org/repos/asf/qpid-proton/repo Commit: http://git-wip-us.apache.org/repos/asf/qpid-proton/commit/d9bc3635 Tree: http://git-wip-us.apache.org/repos/asf/qpid-proton/tree/d9bc3635 Diff: http://git-wip-us.apache.org/repos/asf/qpid-proton/diff/d9bc3635 Branch: refs/heads/master Commit: d9bc3635f4a9f87211da4ff428b8710bd1e28a72 Parents: d5c11f3 Author: JiÅÃ DanÄk <[email protected]> Authored: Mon Feb 27 12:01:08 2017 +0100 Committer: Andrew Stitcher <[email protected]> Committed: Wed Mar 8 00:28:39 2017 -0500 ---------------------------------------------------------------------- proton-c/bindings/python/proton/reactor.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/qpid-proton/blob/d9bc3635/proton-c/bindings/python/proton/reactor.py ---------------------------------------------------------------------- diff --git a/proton-c/bindings/python/proton/reactor.py b/proton-c/bindings/python/proton/reactor.py index 04c5037..bffeea1 100644 --- a/proton-c/bindings/python/proton/reactor.py +++ b/proton-c/bindings/python/proton/reactor.py @@ -176,7 +176,7 @@ class Reactor(Wrapper): if aimpl: return Acceptor(aimpl) else: - raise IOError("%s (%s:%s)" % pn_error_text(pn_reactor_error(self._impl)), host, port) + raise IOError("%s (%s:%s)" % (pn_error_text(pn_reactor_error(self._impl)), host, port)) def connection(self, handler=None): """Deprecated: use connection_to_host() instead --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
