1
0
mirror of https://github.com/django/django.git synced 2025-06-12 06:59:13 +00:00

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
expected to deal with invalid input.
"""
print "converting for ", self, self.fields
for field in self.fields:
field.convert_post_data(new_data)

View File

@ -20,7 +20,7 @@ import os
if not hasattr(__builtins__, 'set'):
from sets import Set as set
attribute_transforms = { 'Admin': lambda cls: Admin(**cls.__dict__) }
attribute_transforms = {'Admin': lambda cls: Admin(**cls.__dict__)}
class ModelBase(type):
"Metaclass for all models"

View File

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