Commit 8158bd93 authored by Malcolm Tredinnick's avatar Malcolm Tredinnick
Browse files

[1.0.X] Fixed #9424 -- Typo fix.

Backport of r9258 from trunk.


git-svn-id: http://code.djangoproject.com/svn/django/branches/releases/1.0.X@9262 bcc190cf-cafb-0310-a4f2-bffc1f526a37
parent 8cf2a05d
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -167,7 +167,7 @@ behave like any existing field, so we'll subclass directly from
            kwargs['max_length'] = 104
            super(HandField, self).__init__(*args, **kwargs)

Our ``HandField`` accept most of the standard field options (see the list
Our ``HandField`` accepts most of the standard field options (see the list
below), but we ensure it has a fixed length, since it only needs to hold 52
card values plus their suits; 104 characters in total.