summaryrefslogtreecommitdiff
path: root/plugin
diff options
context:
space:
mode:
authorLucas Hoffmann <l-m-h@web.de>2017-05-17 12:41:57 +0200
committerLucas Hoffmann <l-m-h@web.de>2017-05-18 00:47:04 +0200
commit2742bc5135d38dd1f6b3f2c3879e39beec34057f (patch)
treeb35a7438cd2b5fba8f0df4b04493b9624aa00c25 /plugin
parentf26c9b14c56225005b384dd0d4dfd946b4a47bc5 (diff)
downloadvdebug-2742bc5135d38dd1f6b3f2c3879e39beec34057f.zip
En- and decode strings used with the base64 module
Diffstat (limited to 'plugin')
-rw-r--r--plugin/python/vdebug/breakpoint.py2
-rw-r--r--plugin/python/vdebug/dbgp.py4
2 files changed, 3 insertions, 3 deletions
diff --git a/plugin/python/vdebug/breakpoint.py b/plugin/python/vdebug/breakpoint.py
index 38cff99..a8f3992 100644
--- a/plugin/python/vdebug/breakpoint.py
+++ b/plugin/python/vdebug/breakpoint.py
@@ -216,7 +216,7 @@ class ConditionalBreakpoint(LineBreakpoint):
def get_cmd(self):
cmd = LineBreakpoint.get_cmd(self)
- cmd += " -- " + base64.encodestring(self.condition)
+ cmd += " -- " + base64.encodestring(self.condition.encode("UTF-8")).decode("UTF-8")
return cmd
class WatchBreakpoint(Breakpoint):
diff --git a/plugin/python/vdebug/dbgp.py b/plugin/python/vdebug/dbgp.py
index 05ee1ba..f6fd526 100644
--- a/plugin/python/vdebug/dbgp.py
+++ b/plugin/python/vdebug/dbgp.py
@@ -557,7 +557,7 @@ class ContextProperty:
if node.text is None:
self.value = ""
else:
- self.value = base64.decodestring(node.text)
+ self.value = base64.decodestring(node.text.encode("UTF-8")).decode("UTF-8")
elif not self.is_uninitialized() \
and not self.has_children:
self.value = node.text
@@ -590,7 +590,7 @@ class ContextProperty:
n = node.find('%s%s' %(self.ns, name))
if n is not None and n.text is not None:
if n.get('encoding') == 'base64':
- val = base64.decodestring(n.text)
+ val = base64.decodestring(n.text.encode("UTF-8")).decode("UTF-8")
else:
val = n.text
else: