summaryrefslogtreecommitdiff
path: root/patchwork/forms.py
diff options
context:
space:
mode:
authorStephen Finucane <stephen@that.guru>2016-10-09 23:35:48 +0100
committerStephen Finucane <stephen@that.guru>2016-10-10 22:22:35 +0100
commit528424733fc8d1595374a0c3ab9caa9038c0054b (patch)
treeb22fa5014b123061f4360644640071e7d642d19f /patchwork/forms.py
parentc044e5aa4b4069d80006f7593cdf3ccf4c4b208e (diff)
downloadpatchwork-528424733fc8d1595374a0c3ab9caa9038c0054b.tar
patchwork-528424733fc8d1595374a0c3ab9caa9038c0054b.tar.gz
models: Remove 'UserProfile.primary_project'
This field was unused and has been for a long time (pre-0.9.0). Signed-off-by: Stephen Finucane <stephen@that.guru> Reviewed-by: Andrew Donnellan <andrew.donnellan@au1.ibm.com>
Diffstat (limited to 'patchwork/forms.py')
-rw-r--r--patchwork/forms.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/patchwork/forms.py b/patchwork/forms.py
index 6a9afe1..702779e 100644
--- a/patchwork/forms.py
+++ b/patchwork/forms.py
@@ -130,7 +130,7 @@ class UserProfileForm(forms.ModelForm):
class Meta:
model = UserProfile
- fields = ['primary_project', 'items_per_page']
+ fields = ['items_per_page']
class OptionalDelegateField(DelegateField):