Commit 90616a77 authored by Joseph Kocherhans's avatar Joseph Kocherhans
Browse files

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
parent b88f9697
Loading
Loading
Loading
Loading
+0 −1
Original line number Diff line number Diff line
@@ -78,7 +78,6 @@ class OverrideCleanTests(TestCase):

class PublicationForm(forms.ModelForm):
    def clean(self):
        print self.cleaned_data
        self.cleaned_data['title'] = self.cleaned_data['title'].upper()
        return self.cleaned_data