diff options
| author | Dylan Araps <dylan.araps@gmail.com> | 2017-07-22 10:01:14 +1000 |
|---|---|---|
| committer | Dylan Araps <dylan.araps@gmail.com> | 2017-07-22 10:01:14 +1000 |
| commit | c8dd8f4d03fc79b5594e8d873e0aba77e360796a (patch) | |
| tree | 1d208cc23aee244c252b76de2d56ab64e289ee48 /pywal/wal.py | |
| parent | d8d0297d8968380879718758493fd135b5234591 (diff) | |
general: Fixes.
Diffstat (limited to 'pywal/wal.py')
| -rw-r--r-- | pywal/wal.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/pywal/wal.py b/pywal/wal.py index 6d10278..fa0eb3e 100644 --- a/pywal/wal.py +++ b/pywal/wal.py @@ -4,11 +4,11 @@ Created by Dylan Araps. """ import pathlib -from pywal import export from pywal import image from pywal import magic from pywal import reload from pywal import sequences +from pywal import template from pywal import wallpaper @@ -42,7 +42,7 @@ def reload_env(cache_dir=CACHE_DIR): def export_all_templates(colors, output_dir=CACHE_DIR, template_dir=None): """Export all templates.""" - export.export_all_templates(colors, output_dir, template_dir) + template.export_all_templates(colors, output_dir, template_dir) def set_wallpaper(img): |
