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:
parent
85ef615c42
commit
a22a7ff4d0
|
@ -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)
|
||||||
|
|
||||||
|
|
|
@ -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)
|
||||||
|
|
Loading…
Reference in New Issue