Django

Code

Changeset 7657

Show
Ignore:
Timestamp:
06/15/08 23:06:50 (5 months ago)
Author:
adrian
Message:

Fixed #7354 -- Fixed a Python 2.3 compatibility issue in formtools/wizard.py. Thanks, mage

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • django/trunk/django/contrib/formtools/wizard.py

    r7294 r7657  
    150150        # Use HIGHEST_PROTOCOL because it's the most efficient. It requires 
    151151        # Python 2.3, but Django requires 2.3 anyway, so that's OK. 
    152         pickled = pickle.dumps(data, protocol=pickle.HIGHEST_PROTOCOL) 
     152        pickled = pickle.dumps(data, pickle.HIGHEST_PROTOCOL) 
    153153        return md5.new(pickled).hexdigest() 
    154154