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()
else:
query_string = ""
return redirect(self.get_step_url(self.steps.current)
+ query_string)
return redirect(self.get_step_url(self.steps.current) +
query_string)
# is the current step the "done" name/view?
elif step_url == self.done_step_name: