changed some print() to raise RuntimeError()
This commit is contained in:
parent
93d1f2f9d5
commit
bc99551f77
|
@ -13,7 +13,6 @@ class ProjectForm(ModelForm):
|
|||
|
||||
class Meta:
|
||||
model = Project
|
||||
# fields = '__all__'
|
||||
exclude = ('pid',)
|
||||
|
||||
class VolunteerForm(ModelForm):
|
||||
|
|
|
@ -89,7 +89,7 @@ class InternView(CookieWizardView):
|
|||
print ('Ehrenamtsbescheinigung detected!')
|
||||
form = HonoraryCertificateForm(data)
|
||||
else:
|
||||
print('ERROR! UNKNOWN FORMTYPE!')
|
||||
raise RuntimeError('ERROR! UNKNOWN FORMTYPE!')
|
||||
else:
|
||||
form = super().get_form(step, data, files)
|
||||
return form
|
||||
|
@ -140,7 +140,7 @@ class ExternView(CookieWizardView):
|
|||
form = LibraryForm(data)
|
||||
form.fields['library'].label = v
|
||||
else:
|
||||
print('ERROR! UNKNOWN FORMTYPE!')
|
||||
raise RuntimeError('ERROR! UNKNOWN FORMTYPE!')
|
||||
else:
|
||||
form = super().get_form(step, data, files)
|
||||
return form
|
||||
|
|
Loading…
Reference in New Issue