forms: do not fix the identifier field in the get_or_create() call which creates new subscriptions, fixes #3495

This commit is contained in:
Benjamin Dauvergne 2013-08-28 17:45:57 +02:00
parent a56c561e1c
commit 504fab5ecc
1 changed files with 0 additions and 1 deletions

View File

@ -45,6 +45,5 @@ class SubscriptionForm(forms.Form):
for category, transport in wanted_subscriptions:
models.Subscription.objects.get_or_create(
user=self.user,
identifier='',
category=category,
transport=transport)