diff options
| -rwxr-xr-x | pywal/__main__.py | 2 | ||||
| -rwxr-xr-x | pywal/export.py | 1 | ||||
| -rwxr-xr-x | pywal/sequences.py | 1 |
3 files changed, 1 insertions, 3 deletions
diff --git a/pywal/__main__.py b/pywal/__main__.py index 228ceb4..ff86b00 100755 --- a/pywal/__main__.py +++ b/pywal/__main__.py @@ -64,7 +64,7 @@ def process_args(args): exit(1) if args.i and args.f: - print("error: conflicting arguments -i and -f.\n" + print("error: Conflicting arguments -i and -f.\n" " Refer to \"wal -h\" for more info.") exit(1) diff --git a/pywal/export.py b/pywal/export.py index 29e0067..dce39d4 100755 --- a/pywal/export.py +++ b/pywal/export.py @@ -29,7 +29,6 @@ def template(colors, input_file, output_dir): def export_all_templates(colors, template_dir=None, output_dir=CACHE_DIR): """Export all template files.""" - # Add the template dir to module path. template_dir = template_dir or \ os.path.join(os.path.dirname(__file__), "templates") diff --git a/pywal/sequences.py b/pywal/sequences.py index eb51497..7542422 100755 --- a/pywal/sequences.py +++ b/pywal/sequences.py @@ -20,7 +20,6 @@ def set_color(index, color): def send_sequences(colors, vte): """Send colors to all open terminals.""" - # Colors 0-15. sequences = [set_color(num, color) for num, color in enumerate(colors["colors"].values())] |
