mirror of https://github.com/django/django.git
Removed a stray print from [12690]. Thanks for catching that, apollo13.
Just running up the commit count in less destructive ways than jacob. Move along. git-svn-id: http://code.djangoproject.com/svn/django/trunk@12691 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
parent
b88f969789
commit
90616a77f0
|
@ -78,7 +78,6 @@ class OverrideCleanTests(TestCase):
|
||||||
|
|
||||||
class PublicationForm(forms.ModelForm):
|
class PublicationForm(forms.ModelForm):
|
||||||
def clean(self):
|
def clean(self):
|
||||||
print self.cleaned_data
|
|
||||||
self.cleaned_data['title'] = self.cleaned_data['title'].upper()
|
self.cleaned_data['title'] = self.cleaned_data['title'].upper()
|
||||||
return self.cleaned_data
|
return self.cleaned_data
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue