Merge branch 'develop' into maebert-fast-import

This commit is contained in:
Jonathan Wren 2019-12-10 20:47:39 -08:00 committed by GitHub
commit 6a8f3edec1
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
59 changed files with 1102 additions and 699 deletions

View file

@ -12,7 +12,7 @@ BLOCK_RE = r"{% *block +(.+?) *%}((?:.|\n)+?){% *endblock *%}"
INCLUDE_RE = r"{% *include +(.+?) *%}"
class Template(object):
class Template:
def __init__(self, template):
self.template = template
self.clean_template = None