Opened 14 years ago

Closed 14 years ago

Last modified 13 years ago

#12888 closed (fixed)

typo in django/db/models/fields/related.py version : 1.2 beta 1 SVN-12453

Reported by: joshg Owned by: Natalia Bidart
Component: Database layer (models, ORM) Version: 1.2-beta
Severity: Keywords: typo, trival
Cc: Triage Stage: Ready for checkin
Has patch: yes Needs documentation: no
Needs tests: no Patch needs improvement: no
Easy pickings: no UI/UX: no

Description

In django/db/models/fields/related.py "is is" should be "is"

230: raise ValueError('Cannot assign "%r": instance is on database "%s", value is is on database "%s"' %
302: raise ValueError('Cannot assign "%r": instance is on database "%s", value is is on database "%s"' %
524: raise ValueError('Cannot add "%r": instance is on database "%s", value is is on database "%s"' %



Attachments (1)

patch-12888.diff (2.1 KB ) - added by Natalia Bidart 14 years ago.
Submitting trivial patch.

Download all attachments as: .zip

Change History (6)

comment:1 by Russell Keith-Magee, 14 years ago

Has patch: set
Triage Stage: UnreviewedAccepted

by Natalia Bidart, 14 years ago

Attachment: patch-12888.diff added

Submitting trivial patch.

comment:2 by Natalia Bidart, 14 years ago

Owner: changed from nobody to Natalia Bidart
Status: newassigned

comment:3 by Alex Gaynor, 14 years ago

Triage Stage: AcceptedReady for checkin

comment:4 by jkocherhans, 14 years ago

Resolution: fixed
Status: assignedclosed

(In [12532]) Fixed #12888. Fixed a typo in some related object error messages. Thanks, nessita.

comment:5 by Jacob, 13 years ago

milestone: 1.2

Milestone 1.2 deleted

Note: See TracTickets for help on using tickets.
Back to Top