diff options
author | Lucas Hoffmann <l-m-h@web.de> | 2017-05-17 12:41:57 +0200 |
---|---|---|
committer | Lucas Hoffmann <l-m-h@web.de> | 2017-05-18 00:47:04 +0200 |
commit | 2742bc5135d38dd1f6b3f2c3879e39beec34057f (patch) | |
tree | b35a7438cd2b5fba8f0df4b04493b9624aa00c25 /plugin | |
parent | f26c9b14c56225005b384dd0d4dfd946b4a47bc5 (diff) | |
download | vdebug-2742bc5135d38dd1f6b3f2c3879e39beec34057f.zip |
En- and decode strings used with the base64 module
Diffstat (limited to 'plugin')
-rw-r--r-- | plugin/python/vdebug/breakpoint.py | 2 | ||||
-rw-r--r-- | plugin/python/vdebug/dbgp.py | 4 |
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: |