diff options
| author | Dylan Araps <dylan.araps@gmail.com> | 2017-06-26 23:23:38 +1000 |
|---|---|---|
| committer | Dylan Araps <dylan.araps@gmail.com> | 2017-06-26 23:23:38 +1000 |
| commit | 0b38d7affc52f002d29f551f96d9d225928d095d (patch) | |
| tree | 43bd7a411570622675d9c68c27806e6bdbb3b5a0 /pywal/__main__.py | |
| parent | 21c19af696d056d1c5317f91f24f533c081b34b5 (diff) | |
General: Remove last global variable.
Diffstat (limited to 'pywal/__main__.py')
| -rwxr-xr-x | pywal/__main__.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/pywal/__main__.py b/pywal/__main__.py index ff09f13..61c3771 100755 --- a/pywal/__main__.py +++ b/pywal/__main__.py @@ -61,7 +61,6 @@ def process_args(args): # -q if args.q: sys.stdout = sys.stderr = open(os.devnull, "w") - g.Args.notify = False # -c if args.c: @@ -82,7 +81,7 @@ def process_args(args): image = gen_colors.get_image(args.i) # Create a list of hex colors. - colors_plain = gen_colors.get_colors(image) + colors_plain = gen_colors.get_colors(image, args.q) colors_plain[8] = set_colors.set_grey(colors_plain) if not args.n: |
