Skip to content

Commit

Permalink
Fix another flake8 warning.
Browse files Browse the repository at this point in the history
I don't agree with flake8 here about the right indentation, but as long as
we're using it, we should stick to it. I don't want to disable its hanging
indent checks just because of this case.
  • Loading branch information
carljm committed Nov 22, 2014
1 parent da2a35c commit a9cced7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions django/views/generic/dates.py
Original file line number Diff line number Diff line change
Expand Up @@ -654,8 +654,8 @@ def get_object(self, queryset=None):
raise Http404(_(
"Future %(verbose_name_plural)s not available because "
"%(class_name)s.allow_future is False.") % {
'verbose_name_plural': qs.model._meta.verbose_name_plural,
'class_name': self.__class__.__name__,
'verbose_name_plural': qs.model._meta.verbose_name_plural,
'class_name': self.__class__.__name__,
},
)

Expand Down

0 comments on commit a9cced7

Please sign in to comment.