magic-removal: Removed some debug print statements

git-svn-id: http://code.djangoproject.com/svn/django/branches/magic-removal@1800 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
Adrian Holovaty 2005-12-30 15:49:20 +00:00
parent 85ef615c42
commit a22a7ff4d0
3 changed files with 70 additions and 72 deletions

View File

@ -98,7 +98,6 @@ class Manipulator(object):
must happen after validation because html2python functions aren't must happen after validation because html2python functions aren't
expected to deal with invalid input. expected to deal with invalid input.
""" """
print "converting for ", self, self.fields
for field in self.fields: for field in self.fields:
field.convert_post_data(new_data) field.convert_post_data(new_data)

View File

@ -460,7 +460,6 @@ class ManipulatorCollection(list, Naming):
return errors return errors
def do_html2python(self, new_data): def do_html2python(self, new_data):
print "coll: ", self
for manip in self: for manip in self:
if manip: if manip:
manip.do_html2python(new_data) manip.do_html2python(new_data)