summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJan Chren <dev.rindeal@gmail.com>2021-11-17 17:21:40 -0500
committersqla-tester <sqla-tester@sqlalchemy.org>2021-11-17 17:21:40 -0500
commitf1fb195706b02966412009f310cb1e0e126a97be (patch)
treeb43cd0721cb3081d7958971fdceb89cf9b7665d3
parentf521a8f61592c8e892b4af2c89c02d82039b5e19 (diff)
downloadmako-f1fb195706b02966412009f310cb1e0e126a97be.tar.gz
fix typo
Closes: #326 Pull-request: https://github.com/sqlalchemy/mako/pull/326 Pull-request-sha: a04258282a896237596e926135f0d179686e64ac Change-Id: I54896fdaeb4a5b7f8f2d1d13afeaa66377bc6ab5
-rw-r--r--mako/parsetree.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/mako/parsetree.py b/mako/parsetree.py
index c1629d9..5cef120 100644
--- a/mako/parsetree.py
+++ b/mako/parsetree.py
@@ -344,7 +344,7 @@ class Tag(Node, metaclass=_TagMeta):
elif key in nonexpressions:
if re.search(r"\${.+?}", self.attributes[key]):
raise exceptions.CompileException(
- "Attibute '%s' in tag '%s' does not allow embedded "
+ "Attribute '%s' in tag '%s' does not allow embedded "
"expressions" % (key, self.keyword),
**self.exception_kwargs,
)