From cb857df125f4da1d815c62c564c4cfe86cb1ffa1 Mon Sep 17 00:00:00 2001 From: Ilya Kreymer Date: Tue, 24 Feb 2015 10:35:49 -0800 Subject: [PATCH] memento: fix MementoTimemapView to have consistent signature with other query views --- pywb/webapp/views.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pywb/webapp/views.py b/pywb/webapp/views.py index 11624a22..036977a1 100644 --- a/pywb/webapp/views.py +++ b/pywb/webapp/views.py @@ -189,7 +189,7 @@ class J2HtmlCapturesView(J2TemplateView): #================================================================= class MementoTimemapView(object): - def render_response(self, wbrequest, cdx_lines): + def render_response(self, wbrequest, cdx_lines, **kwargs): memento_lines = make_timemap(wbrequest, cdx_lines) return WbResponse.text_stream(memento_lines, content_type=LINK_FORMAT)