controls/DebugVariablePanel/DebugVariableItem.py
changeset 1878 fb73a6b6622d
parent 1832 0f1081928d65
child 1881 091005ec69c4
--- a/controls/DebugVariablePanel/DebugVariableItem.py	Thu Oct 19 10:57:35 2017 +0300
+++ b/controls/DebugVariablePanel/DebugVariableItem.py	Thu Oct 19 11:03:03 2017 +0300
@@ -342,14 +342,14 @@
             # Get raw value if asked
             if not raw:
                 value = TYPE_TRANSLATOR.get(
-                        self.VariableType, str)(value)
+                    self.VariableType, str)(value)
 
             return value, forced
 
         # Return raw value if asked
         if not raw and self.VariableType in ["STRING", "WSTRING"]:
             return TYPE_TRANSLATOR.get(
-                    self.VariableType, str)(self.Value)
+                self.VariableType, str)(self.Value)
         return self.Value
 
     def GetNearestData(self, tick, adjust):