summaryrefslogtreecommitdiffstats
path: root/apps/patchwork/views
diff options
context:
space:
mode:
Diffstat (limited to 'apps/patchwork/views')
-rw-r--r--apps/patchwork/views/bundle.py2
-rw-r--r--apps/patchwork/views/patch.py1
-rw-r--r--apps/patchwork/views/user.py3
-rw-r--r--apps/patchwork/views/xmlrpc.py2
4 files changed, 3 insertions, 5 deletions
diff --git a/apps/patchwork/views/bundle.py b/apps/patchwork/views/bundle.py
index d9db490..e418b3a 100644
--- a/apps/patchwork/views/bundle.py
+++ b/apps/patchwork/views/bundle.py
@@ -68,7 +68,7 @@ def setbundle(request):
try:
patch = Patch.objects.get(id = id)
bundle.append_patch(patch)
- except ex:
+ except:
pass
bundle.save()
diff --git a/apps/patchwork/views/patch.py b/apps/patchwork/views/patch.py
index 6c9fb44..1583009 100644
--- a/apps/patchwork/views/patch.py
+++ b/apps/patchwork/views/patch.py
@@ -30,7 +30,6 @@ def patch(request, patch_id):
patch = get_object_or_404(Patch, id=patch_id)
context.project = patch.project
editable = patch.is_editable(request.user)
- messages = []
form = None
createbundleform = None
diff --git a/apps/patchwork/views/user.py b/apps/patchwork/views/user.py
index c83f0b1..1ae3c2d 100644
--- a/apps/patchwork/views/user.py
+++ b/apps/patchwork/views/user.py
@@ -72,7 +72,7 @@ def link(request):
context),
settings.DEFAULT_FROM_EMAIL,
[form.cleaned_data['email']])
- except Exception, ex:
+ except Exception:
context['confirmation'] = None
context['error'] = 'An error occurred during confirmation. ' + \
'Please try again later'
@@ -97,7 +97,6 @@ def link_confirm(request, key):
@login_required
def unlink(request, person_id):
- context = PatchworkRequestContext(request)
person = get_object_or_404(Person, id = person_id)
if request.method == 'POST':
diff --git a/apps/patchwork/views/xmlrpc.py b/apps/patchwork/views/xmlrpc.py
index 8e8b78c..bb9ebe1 100644
--- a/apps/patchwork/views/xmlrpc.py
+++ b/apps/patchwork/views/xmlrpc.py
@@ -129,7 +129,7 @@ def xmlrpc(request):
try:
ret = dispatcher._marshaled_dispatch(request)
response.write(ret)
- except Exception, e:
+ except Exception:
return HttpResponseServerError()
return response