diff options
Diffstat (limited to 'apps')
-rw-r--r-- | apps/patchwork/forms.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/patchwork/forms.py b/apps/patchwork/forms.py index 7adc8c0..18c6a5e 100644 --- a/apps/patchwork/forms.py +++ b/apps/patchwork/forms.py @@ -91,7 +91,7 @@ class PatchForm(forms.ModelForm): if not project: raise Exception("meep") super(PatchForm, self).__init__(instance = instance, *args, **kwargs) - self.fields['delegate'] = DelegateField(project) + self.fields['delegate'] = DelegateField(project, required = False) class Meta: model = Patch |