提交 a4e66b84 编写于 作者: L Lukáš Doktor

avocado.core.html: Add "update" hook

This hook is used by older pystache (pystache==0.4.1). We don't
use it so let's simply ignore it.
Signed-off-by: NLukáš Doktor <ldoktor@redhat.com>
上级 3ccd585c
......@@ -56,6 +56,12 @@ class ReportModel(object):
self.html_output = html_output
self.html_output_dir = os.path.abspath(os.path.dirname(html_output))
def update(self, **kwargs):
"""
Hook for updates not supported
"""
pass
def get(self, key, default):
value = getattr(self, key, default)
if callable(value):
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册