summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--viewstate/parse.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/viewstate/parse.py b/viewstate/parse.py
index b136681..95b3c2e 100644
--- a/viewstate/parse.py
+++ b/viewstate/parse.py
@@ -302,9 +302,9 @@ class Color(Parser):
"MenuHighlight",
]
- color = 'Unknown'
+ color = "Unknown"
try:
- color = 'Color: {}'.format(color_table[b[0]])
+ color = "Color: {}".format(color_table[b[0]])
except IndexError:
pass