diff options
| author | Dylan Araps <dylan.araps@gmail.com> | 2017-08-09 11:22:51 +1000 |
|---|---|---|
| committer | Dylan Araps <dylan.araps@gmail.com> | 2017-08-09 11:22:51 +1000 |
| commit | d98be353ecd5deff97804312ec798fb227adfbc1 (patch) | |
| tree | 84491474f6e0648dea3a7689f0626a4809492007 /pywal/__main__.py | |
| parent | d9a0865277dfdfe7951b9b429d5af1f2be27d66c (diff) | |
general: Make pywal compatible with python 3.5
Diffstat (limited to 'pywal/__main__.py')
| -rw-r--r-- | pywal/__main__.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/pywal/__main__.py b/pywal/__main__.py index dbca515..412a6d4 100644 --- a/pywal/__main__.py +++ b/pywal/__main__.py @@ -84,14 +84,14 @@ def process_args(args): sys.exit(1) if args.v: - print(f"wal {__version__}") + print("wal %s" % __version__) sys.exit(0) if args.q: sys.stdout = sys.stderr = open(os.devnull, "w") if args.c: - shutil.rmtree(CACHE_DIR / "schemes", ignore_errors=True) + shutil.rmtree(str(CACHE_DIR / "schemes"), ignore_errors=True) if args.r: reload.colors(args.t) |
