summaryrefslogtreecommitdiff
path: root/qpid/python
diff options
context:
space:
mode:
Diffstat (limited to 'qpid/python')
-rw-r--r--qpid/python/qpid/management.py2
-rw-r--r--qpid/python/qpid/qmfconsole.py2
2 files changed, 2 insertions, 2 deletions
diff --git a/qpid/python/qpid/management.py b/qpid/python/qpid/management.py
index fd60ac22cf..863e25e24c 100644
--- a/qpid/python/qpid/management.py
+++ b/qpid/python/qpid/management.py
@@ -534,7 +534,7 @@ class managementClient:
def handleMethodReply (self, ch, codec, sequence):
status = codec.read_uint32 ()
- sText = str (codec.read_str8 ())
+ sText = str (codec.read_str16 ())
data = self.seqMgr.release (sequence)
if data == None:
diff --git a/qpid/python/qpid/qmfconsole.py b/qpid/python/qpid/qmfconsole.py
index febcae5ea2..4c7b47e38a 100644
--- a/qpid/python/qpid/qmfconsole.py
+++ b/qpid/python/qpid/qmfconsole.py
@@ -460,7 +460,7 @@ class Session:
def _handleMethodResp(self, broker, codec, seq):
code = codec.read_uint32()
- text = str(codec.read_str8())
+ text = str(codec.read_str16())
outArgs = {}
method, synchronous = self.seqMgr._release(seq)
if code == 0: