diff -r da5f1fa46f2b -r fb73a6b6622d controls/DebugVariablePanel/DebugVariableItem.py --- 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):