Fixed flake8 error due to misplaced line break

This commit is contained in:
Greg Chapple
2015-02-16 12:22:57 +00:00
parent 3be3dc1e88
commit 642ddee658

View File

@@ -643,8 +643,8 @@ class NamedUrlWizardView(WizardView):
query_string = "?%s" % self.request.GET.urlencode() query_string = "?%s" % self.request.GET.urlencode()
else: else:
query_string = "" query_string = ""
return redirect(self.get_step_url(self.steps.current) return redirect(self.get_step_url(self.steps.current) +
+ query_string) query_string)
# is the current step the "done" name/view? # is the current step the "done" name/view?
elif step_url == self.done_step_name: elif step_url == self.done_step_name: