summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorElena ``of Valhalla'' Grandi <valhalla@trueelena.org>2019-09-11 11:33:30 +0200
committerElena ``of Valhalla'' Grandi <valhalla@trueelena.org>2019-09-11 11:33:30 +0200
commit935047878ba6ad473d2d32b8163e124bc7b2e5c2 (patch)
tree339ed4ba388b51e568e67ffdac999829de4451ac
parentc0a33617f9d304933322496c1b7b36f0d3882c1b (diff)
Missing import in __init__.py
-rw-r--r--lesana/__init__.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/lesana/__init__.py b/lesana/__init__.py
index 008f5ac..6665ca8 100644
--- a/lesana/__init__.py
+++ b/lesana/__init__.py
@@ -1,5 +1,6 @@
-from .collection import Collection, Entry
+from .collection import Collection, Entry, TemplatingError
# prevent spurious warnings from pyflakes
assert Collection
assert Entry
+assert TemplatingError