Repository: qpid-proton
Updated Branches:
  refs/heads/master f354584c7 -> 5f5e93f47


fixed error message


Project: http://git-wip-us.apache.org/repos/asf/qpid-proton/repo
Commit: http://git-wip-us.apache.org/repos/asf/qpid-proton/commit/5f5e93f4
Tree: http://git-wip-us.apache.org/repos/asf/qpid-proton/tree/5f5e93f4
Diff: http://git-wip-us.apache.org/repos/asf/qpid-proton/diff/5f5e93f4

Branch: refs/heads/master
Commit: 5f5e93f4735733c78625fbc83b2b9fcfeb5fbb58
Parents: f354584
Author: Rafael Schloming <[email protected]>
Authored: Thu Jan 22 23:13:02 2015 -0500
Committer: Rafael Schloming <[email protected]>
Committed: Thu Jan 22 23:13:02 2015 -0500

----------------------------------------------------------------------
 proton-c/bindings/python/proton/__init__.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/qpid-proton/blob/5f5e93f4/proton-c/bindings/python/proton/__init__.py
----------------------------------------------------------------------
diff --git a/proton-c/bindings/python/proton/__init__.py 
b/proton-c/bindings/python/proton/__init__.py
index b9bee7d..e5d6a32 100644
--- a/proton-c/bindings/python/proton/__init__.py
+++ b/proton-c/bindings/python/proton/__init__.py
@@ -2493,7 +2493,7 @@ class Link(Wrapper, Endpoint):
   def _check(self, err):
     if err < 0:
       exc = EXCEPTIONS.get(err, LinkException)
-      raise exc("[%s]: %s" % (err, pn_link_error(self._impl)))
+      raise exc("[%s]: %s" % (err, pn_error_text(pn_link_error(self._impl))))
     else:
       return err
 


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to