diff options
| author | deviantfero <fmorataya.04@gmail.com> | 2020-03-16 04:36:46 -0600 |
|---|---|---|
| committer | deviantfero <fmorataya.04@gmail.com> | 2020-03-16 04:36:46 -0600 |
| commit | 5616cd7765a5b6cafc4d495e5fa61f0fdbeb66f2 (patch) | |
| tree | 4a4a00d86457f0b89e865ca780e5d8486f4a20b9 /pywal | |
| parent | f63a8aab97e789a8b90c94ecc0414e1f8a3d5db3 (diff) | |
reload: add explicit check to False to avoid exceptions
Diffstat (limited to 'pywal')
| -rw-r--r-- | pywal/reload.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pywal/reload.py b/pywal/reload.py index 13e0ca8..24106c7 100644 --- a/pywal/reload.py +++ b/pywal/reload.py @@ -26,7 +26,7 @@ def xrdb(xrdb_files=None): if shutil.which("xrdb") and OS != "Darwin": for file in xrdb_files: - subprocess.run(["xrdb", "-merge", "-quiet", file]) + subprocess.run(["xrdb", "-merge", "-quiet", file], check=False) def gtk(): |
