diff options
| author | Dylan Araps <dylan.araps@gmail.com> | 2017-07-30 12:44:03 +1000 |
|---|---|---|
| committer | Dylan Araps <dylan.araps@gmail.com> | 2017-07-30 12:44:03 +1000 |
| commit | ad986dd534656893be10c13a104d26fcd1e1a20b (patch) | |
| tree | dab5f4e5c34244f97c57232d0c550a8660a0e1a2 /pywal | |
| parent | 02d37b6bbef9b2f500c7a4e757de184bc88b8f9a (diff) | |
general: Remove pointless f-string
Diffstat (limited to 'pywal')
| -rw-r--r-- | pywal/export.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pywal/export.py b/pywal/export.py index a483022..748e3a9 100644 --- a/pywal/export.py +++ b/pywal/export.py @@ -48,7 +48,7 @@ def every(colors, output_dir=CACHE_DIR): for file in os.scandir(MODULE_DIR / "templates"): template(all_colors, file.path, output_dir / file.name) - print(f"export: Exported all files.") + print("export: Exported all files.") def color(colors, export_type, output_file=None): |
