Skip to content

Commit 9959ee7

Browse files
committed
Python2 fix super
1 parent f679d55 commit 9959ee7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

codespeed/views.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ class HomeView(TemplateView):
6666
template_name = "home.html"
6767

6868
def get_context_data(self, **kwargs):
69-
context = super().get_context_data(**kwargs)
69+
context = super(HomeView, self).get_context_data(**kwargs)
7070
context['show_reports'] = settings.SHOW_REPORTS
7171
context['show_historical'] = settings.SHOW_HISTORICAL
7272
historical_settings = ['SHOW_HISTORICAL', 'DEF_BASELINE', 'DEF_EXECUTABLE']

0 commit comments

Comments
 (0)