controls/VariablePanel.py
changeset 2434 07f48018b6f5
parent 2432 dbc065a2f7a5
child 2437 105c20fdeb19
--- a/controls/VariablePanel.py	Thu Oct 04 12:09:23 2018 +0300
+++ b/controls/VariablePanel.py	Thu Oct 04 17:24:40 2018 +0300
@@ -26,6 +26,7 @@
 from __future__ import absolute_import
 import re
 from types import TupleType, StringType, UnicodeType
+from builtins import str as text
 
 import wx
 import wx.grid
@@ -607,7 +608,7 @@
                     model = re.compile("%[IQM][XBWLD]?(.*\.|)")
                     prefix = model.match(old_location).group(0)
                     addr = int(re.split(model, old_location)[-1]) + 1
-                    row_content.Location = prefix + unicode(addr)
+                    row_content.Location = prefix + text(addr)
 
             if not row_content.Class:
                 row_content.Class = self.DefaultTypes.get(self.Filter, self.Filter)