Fixed Pep 8 Error

This commit is contained in:
Norman Jäckel 2013-05-16 23:44:07 +02:00
parent 4234ebcfe8
commit a65a4662ae

View File

@ -580,8 +580,8 @@ class MotionSetStateView(SingleObjectMixin, RedirectView):
self.object.write_log(
message_list=[ugettext_noop('State changed to '), self.object.state.name],
person=self.request.user)
messages.success(request, _('The state of the motion was set to %s.')
% html_strong(_(self.object.state.name)))
messages.success(request,
_('The state of the motion was set to %s.') % html_strong(_(self.object.state.name)))
set_state = MotionSetStateView.as_view()
reset_state = MotionSetStateView.as_view(reset=True)