summaryrefslogtreecommitdiffstats
path: root/apps/patchwork/views/user.py
diff options
context:
space:
mode:
authorNate Case <ncase@xes-inc.com>2008-08-23 11:03:18 +0800
committerJeremy Kerr <jk@ozlabs.org>2008-08-23 11:03:18 +0800
commit05d26756d7e7f254d5631a0649aeac5fd3a58ca8 (patch)
treed40b4861766912d9a15cd412f5df7b4d3bd1452d /apps/patchwork/views/user.py
parent04767c65175f2a76127cd78649c5d92a82a39bb6 (diff)
downloadpatchwork-05d26756d7e7f254d5631a0649aeac5fd3a58ca8.tar.bz2
patchwork-05d26756d7e7f254d5631a0649aeac5fd3a58ca8.tar.xz
In some places tabs are used instead of spaces for indentation,
even when other lines of a method are indented with spaces. This gets rid of all tabs and uses spaces everywhere. [Reworked to apply on newer code by Jeremy] Signed-off-by: Nate Case <ncase@xes-inc.com> Signed-off-by: Jeremy Kerr <jk@ozlabs.org>
Diffstat (limited to 'apps/patchwork/views/user.py')
-rw-r--r--apps/patchwork/views/user.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/patchwork/views/user.py b/apps/patchwork/views/user.py
index 19091d3..b042d35 100644
--- a/apps/patchwork/views/user.py
+++ b/apps/patchwork/views/user.py
@@ -24,9 +24,9 @@ from django.shortcuts import render_to_response, get_object_or_404
from django.contrib import auth
from django.http import HttpResponse, HttpResponseRedirect
from patchwork.models import Project, Patch, Bundle, Person, UserProfile, \
- UserPersonConfirmation, State
+ UserPersonConfirmation, State
from patchwork.forms import MultiplePatchForm, UserProfileForm, \
- UserPersonLinkForm
+ UserPersonLinkForm
from patchwork.utils import Order, get_patch_ids
from patchwork.filters import DelegateFilter
from patchwork.paginator import Paginator