summaryrefslogtreecommitdiff
path: root/pywal/colors.py
diff options
context:
space:
mode:
authorDylan Araps <dylan.araps@gmail.com>2017-08-09 11:22:51 +1000
committerDylan Araps <dylan.araps@gmail.com>2017-08-09 11:22:51 +1000
commitd98be353ecd5deff97804312ec798fb227adfbc1 (patch)
tree84491474f6e0648dea3a7689f0626a4809492007 /pywal/colors.py
parentd9a0865277dfdfe7951b9b429d5af1f2be27d66c (diff)
general: Make pywal compatible with python 3.5
Diffstat (limited to 'pywal/colors.py')
-rw-r--r--pywal/colors.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/pywal/colors.py b/pywal/colors.py
index 2483acd..7a1a991 100644
--- a/pywal/colors.py
+++ b/pywal/colors.py
@@ -73,7 +73,7 @@ def sort_colors(img, colors):
colors_special.update({"cursor": raw_colors[15]})
for index, color in enumerate(raw_colors):
- colors_hex.update({f"color{index}": color})
+ colors_hex.update({"color%s" % index: color})
colors["special"] = colors_special
colors["colors"] = colors_hex