summaryrefslogtreecommitdiffstats
path: root/apps/patchwork/views/__init__.py
diff options
context:
space:
mode:
Diffstat (limited to 'apps/patchwork/views/__init__.py')
-rw-r--r--apps/patchwork/views/__init__.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/patchwork/views/__init__.py b/apps/patchwork/views/__init__.py
index b5c19c2..16a84cc 100644
--- a/apps/patchwork/views/__init__.py
+++ b/apps/patchwork/views/__init__.py
@@ -55,12 +55,12 @@ def generic_list(request, project, view,
ps.append(patch)
(errors, form) = set_patches(request.user, project, action, \
- request.POST, ps, context)
+ request.POST, ps, context)
if errors:
context['errors'] = errors
if not (request.user.is_authenticated() and \
- project in request.user.get_profile().maintainer_projects.all()):
+ project in request.user.get_profile().maintainer_projects.all()):
form = None
for (filterclass, setting) in filter_settings: