Opened 19 years ago

Closed 17 years ago

#456 closed defect (invalid)

[patch] minor typo in overview.txt

Reported by: eugene@… Owned by: Jacob
Component: Documentation Version:
Severity: trivial Keywords:
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

Extra ')':

Index: overview.txt
===================================================================
--- overview.txt	(revision 618)

+++ overview.txt	(working copy)
@@ -27,7 +27,7 @@
             return self.full_name
 
     class Article(meta.Model):
-        pub_date = meta.DateTimeField)
+        pub_date = meta.DateTimeField
         headline = meta.CharField(maxlength=200)
         article = meta.TextField()
         reporter = meta.ForeignKey(Reporter)

Change History (3)

comment:1 by anonymous, 17 years ago

Resolution: fixed
Status: newclosed

comment:2 by James Bennett, 17 years ago

Resolution: fixed
Status: closedreopened

Please don't anonymously close tickets, and when closing please state a reason; if the ticket was fixed, please include the number of the changeset in which it was fixed.

comment:3 by James Bennett, 17 years ago

Resolution: invalid
Status: reopenedclosed

Closing invalid because the ticket is ancient and I can no longer see this bug in any version of Django.

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