Don't require init() method in builders.

This commit is contained in:
Georg Brandl 2008-12-26 20:09:17 +01:00
parent a5e1d06ccc
commit 5713270079

View File

@ -65,7 +65,7 @@ class Builder(object):
def init(self):
"""Load necessary templates and perform initialization."""
raise NotImplementedError
pass
def init_templates(self):
# Call this from init() if you need templates.