Signed-off-by: Guilherme Salgado <[email protected]>
---

New version which applies cleanly on latest master branch.

 apps/patchwork/tests/encodings.py |    2 +-
 apps/patchwork/tests/utils.py     |    2 +-
 apps/patchwork/views/bundle.py    |    4 ++--
 3 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/apps/patchwork/tests/encodings.py 
b/apps/patchwork/tests/encodings.py
index db98483..b9032bb 100644
--- a/apps/patchwork/tests/encodings.py
+++ b/apps/patchwork/tests/encodings.py
@@ -70,7 +70,7 @@ class UTF8HeaderPatchViewTest(UTF8PatchViewTest):
     def setUp(self):
         defaults.project.save()
         self.patch_author = Person(name = self.patch_author_name,
-                email = defaults.patch_author_person.email)
+            email = defaults.patch_author_person.email)
         self.patch_author.save()
         self.patch_content = read_patch(self.patch_filename,
                 encoding = self.patch_encoding)
diff --git a/apps/patchwork/tests/utils.py b/apps/patchwork/tests/utils.py
index 02c4bd4..35c4beb 100644
--- a/apps/patchwork/tests/utils.py
+++ b/apps/patchwork/tests/utils.py
@@ -40,7 +40,7 @@ class defaults(object):
 
     patch_author = 'Patch Author <[email protected]>'
     patch_author_person = Person(name = 'Patch Author',
-            email = '[email protected]')
+        email = '[email protected]')
 
     comment_author = 'Comment Author <[email protected]>'
 
diff --git a/apps/patchwork/views/bundle.py b/apps/patchwork/views/bundle.py
index 54aa21d..d9db490 100644
--- a/apps/patchwork/views/bundle.py
+++ b/apps/patchwork/views/bundle.py
@@ -113,7 +113,7 @@ def bundles(request):
             form = DeleteBundleForm(request.POST)
             if form.is_valid():
                 bundle = get_object_or_404(Bundle,
-                        id = form.cleaned_data['bundle_id'])
+                    id = form.cleaned_data['bundle_id'])
                 bundle.delete()
 
     bundles = Bundle.objects.filter(owner = request.user)
@@ -173,7 +173,7 @@ def mbox(request, bundle_id):
     bundle = get_object_or_404(Bundle, id = bundle_id)
     response = HttpResponse(mimetype='text/plain')
     response['Content-Disposition'] = 'attachment; filename=bundle-%d.mbox' % \
-            bundle.id
+        bundle.id
     response.write(bundle.mbox())
     return response
 

_______________________________________________
Patchwork mailing list
[email protected]
https://lists.ozlabs.org/listinfo/patchwork

Reply via email to