controls/DebugVariablePanel/DebugVariableItem.py
changeset 1774 ac0fe8aabb5e
parent 1767 c74815729afd
child 1782 5b6ad7a7fd9d
--- 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]