diff options
Diffstat (limited to 'django/contrib/formtools/utils.py')
| -rw-r--r-- | django/contrib/formtools/utils.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/django/contrib/formtools/utils.py b/django/contrib/formtools/utils.py index 44b8de1188..e77931ffba 100644 --- a/django/contrib/formtools/utils.py +++ b/django/contrib/formtools/utils.py @@ -32,7 +32,7 @@ def security_hash(request, form, *args): data.append(settings.SECRET_KEY) # Use HIGHEST_PROTOCOL because it's the most efficient. It requires - # Python 2.3, but Django requires 2.3 anyway, so that's OK. + # Python 2.3, but Django requires 2.4 anyway, so that's OK. pickled = pickle.dumps(data, pickle.HIGHEST_PROTOCOL) return md5_constructor(pickled).hexdigest() |
