summaryrefslogtreecommitdiff
path: root/pywal
diff options
context:
space:
mode:
authorDylan Araps <dylan.araps@gmail.com>2017-07-22 10:01:14 +1000
committerDylan Araps <dylan.araps@gmail.com>2017-07-22 10:01:14 +1000
commitc8dd8f4d03fc79b5594e8d873e0aba77e360796a (patch)
tree1d208cc23aee244c252b76de2d56ab64e289ee48 /pywal
parentd8d0297d8968380879718758493fd135b5234591 (diff)
general: Fixes.
Diffstat (limited to 'pywal')
-rw-r--r--pywal/template.py (renamed from pywal/export.py)0
-rw-r--r--pywal/wal.py4
2 files changed, 2 insertions, 2 deletions
diff --git a/pywal/export.py b/pywal/template.py
index 1dc72bf..1dc72bf 100644
--- a/pywal/export.py
+++ b/pywal/template.py
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):