diff -r 38fde37c3766 -r ac0fe8aabb5e controls/DebugVariablePanel/DebugVariableItem.py --- a/controls/DebugVariablePanel/DebugVariableItem.py Sat Aug 19 00:58:44 2017 +0300 +++ b/controls/DebugVariablePanel/DebugVariableItem.py Sat Aug 19 01:11:27 2017 +0300 @@ -308,7 +308,7 @@ @param value: New value """ # Remove quote and double quote surrounding string value to get raw value - if self.VariableType == "STRING" and value.startswith("'") and value.endswith("'") or \ + if self.VariableType == "STRING" and value.startswith("'") and value.endswith("'") or \ self.VariableType == "WSTRING" and value.startswith('"') and value.endswith('"'): value = value[1:-1]