Remove comments referencing encryption. Django doesn't do encryption.

git-svn-id: http://code.djangoproject.com/svn/django/trunk@17012 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
Paul McMillan 2011-10-18 20:28:52 +00:00
parent 14d24eb438
commit 67565a5379
5 changed files with 5 additions and 5 deletions

View file

@ -140,7 +140,7 @@ class MediaDefiningClass(type):
class Widget(object):
__metaclass__ = MediaDefiningClass
is_hidden = False # Determines whether this corresponds to an <input type="hidden">.
needs_multipart_form = False # Determines does this widget need multipart-encrypted form
needs_multipart_form = False # Determines does this widget need multipart form
is_localized = False
is_required = False