Repository: qpid-proton Updated Branches: refs/heads/master 703db66ff -> dcd4e47df
PROTON-827: revert mistaken change to handlers.py Looks like there was a typo introduced by 0c11d11 that broke the builds Project: http://git-wip-us.apache.org/repos/asf/qpid-proton/repo Commit: http://git-wip-us.apache.org/repos/asf/qpid-proton/commit/dcd4e47d Tree: http://git-wip-us.apache.org/repos/asf/qpid-proton/tree/dcd4e47d Diff: http://git-wip-us.apache.org/repos/asf/qpid-proton/diff/dcd4e47d Branch: refs/heads/master Commit: dcd4e47df7cb3d716d0003d01a6271ab6c663189 Parents: 703db66 Author: Dominic Evans <[email protected]> Authored: Wed May 6 12:19:27 2015 +0100 Committer: Dominic Evans <[email protected]> Committed: Wed May 6 12:20:26 2015 +0100 ---------------------------------------------------------------------- proton-c/bindings/python/proton/handlers.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/qpid-proton/blob/dcd4e47d/proton-c/bindings/python/proton/handlers.py ---------------------------------------------------------------------- diff --git a/proton-c/bindings/python/proton/handlers.py b/proton-c/bindings/python/proton/handlers.py index bbbdd1e..6836788 100644 --- a/proton-c/bindings/python/proton/handlers.py +++ b/proton-c/bindings/python/proton/handlers.py @@ -543,7 +543,7 @@ class CFlowController(WrappedHandler): def __init__(self, window=1024): WrappedHandler.__init__(self, lambda: pn_flowcontroller(window)) -oclass CHandshaker(WrappedHandler): +class CHandshaker(WrappedHandler): def __init__(self): WrappedHandler.__init__(self, pn_handshaker) --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
