aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStephen Finucane <stephen@that.guru>2016-10-20 08:28:55 +0100
committerStephen Finucane <stephen@that.guru>2016-10-22 11:22:54 +0100
commitd497c2b234756a8846d86cbf704cec4bd91bf915 (patch)
tree85b0e05def475263c80a98be6519165af838c32a
parenta401c586ea821ae295e72f00a436ed5e957d20fe (diff)
downloadpatchwork-d497c2b234756a8846d86cbf704cec4bd91bf915.tar
patchwork-d497c2b234756a8846d86cbf704cec4bd91bf915.tar.gz
models: Remove UserProfile.sync_person
This doesn't seem to do anything, and hasn't for a very long time (pre-0.9.0, at least). Signed-off-by: Stephen Finucane <stephen@that.guru> Reviewed-by: Daniel Axtens <dja@axtens.net>
-rw-r--r--patchwork/models.py3
1 files changed, 0 insertions, 3 deletions
diff --git a/patchwork/models.py b/patchwork/models.py
index 51f9745..f6a2f26 100644
--- a/patchwork/models.py
+++ b/patchwork/models.py
@@ -143,9 +143,6 @@ class UserProfile(models.Model):
return Project.objects.filter(id__in=Submission.objects.filter(
submitter__in=submitters).values('project_id').query)
- def sync_person(self):
- pass
-
def n_todo_patches(self):
return self.todo_patches().count()