diff options
| author | Dylan Araps <[email protected]> | 2017-07-31 14:50:06 +1000 |
|---|---|---|
| committer | GitHub <[email protected]> | 2017-07-31 14:50:06 +1000 |
| commit | db471199b7a503d5d47514dad0b1fda6932531b0 (patch) | |
| tree | 8785bf5d7d7c7d3a1862f471c20c72871cfa377d | |
| parent | sequences: Fix foreground color on mac (diff) | |
| parent | colors: Fix bug with brighter backgrounds (diff) | |
| download | pywal-db471199b7a503d5d47514dad0b1fda6932531b0.tar.xz pywal-db471199b7a503d5d47514dad0b1fda6932531b0.zip | |
Merge branch 'master' into macos2
| -rw-r--r-- | pywal/colors.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pywal/colors.py b/pywal/colors.py index 4a55cb8..64707be 100644 --- a/pywal/colors.py +++ b/pywal/colors.py @@ -56,7 +56,7 @@ def sort_colors(img, colors): raw_colors = colors[:1] + colors[9:] + colors[8:] # Darken the background color if it's too light. - # The value can be a letter or an it so we treat the + # The value can be a letter or an int so we treat the # entire test as strings. if raw_colors[0][1] not in ["0", "1", "2"]: raw_colors[0] = util.darken_color(raw_colors[0], 0.25) |