Commit 6a94c977 authored by Tim Graham's avatar Tim Graham
Browse files

[1.7.x] Corrected example in Form.has_changed() docs.

Backport of ebfadb80 from master
parent 58e0d6bd
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -257,7 +257,7 @@ form data has been changed from the initial data.
    ...         'message': 'Hi there',
    ...         'sender': 'foo@example.com',
    ...         'cc_myself': True}
    >>> f = ContactForm(initial=data)
    >>> f = ContactForm(data, initial=data)
    >>> f.has_changed()
    False