diff options
| author | Dylan Araps <[email protected]> | 2017-07-30 23:19:25 +1000 |
|---|---|---|
| committer | Dylan Araps <[email protected]> | 2017-07-30 23:19:25 +1000 |
| commit | 77812341503f330563a23fda187d311c2ab3a734 (patch) | |
| tree | fbbf22ad04ff456c8230fd96063bab75e84cc79f | |
| parent | sequences: Add missing args (diff) | |
| download | pywal-77812341503f330563a23fda187d311c2ab3a734.tar.xz pywal-77812341503f330563a23fda187d311c2ab3a734.zip | |
sequences: Fix extra arg
| -rw-r--r-- | pywal/sequences.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pywal/sequences.py b/pywal/sequences.py index 313b093..b2b1f90 100644 --- a/pywal/sequences.py +++ b/pywal/sequences.py @@ -45,7 +45,7 @@ def create_sequences(colors, vte): # Set a blank color that isn't affected by bold highlighting. # Used in wal.vim's airline theme. - sequences.append(set_color(66, colors["special"]["background"], "h")) + sequences.append(set_color(66, colors["special"]["background"])) # This escape sequence doesn"t work in VTE terminals. if not vte: |