Opened 16 years ago
Closed 16 years ago
#7842 closed (fixed)
raw string identifier missing from django-admin.py
Reported by: | yoshi | Owned by: | nobody |
---|---|---|---|
Component: | Core (Management commands) | Version: | dev |
Severity: | Keywords: | ||
Cc: | Triage Stage: | Unreviewed | |
Has patch: | no | Needs documentation: | no |
Needs tests: | no | Patch needs improvement: | no |
Easy pickings: | no | UI/UX: | no |
Description (last modified by )
After creating a new project with django-admin.py the urls.py is missing a 'r' from the ('^admin/(.*)', admin.site.root)
line.
Tried it on r7997.
Change History (2)
comment:1 by , 16 years ago
Description: | modified (diff) |
---|
comment:2 by , 16 years ago
Resolution: | → fixed |
---|---|
Status: | new → closed |
Note:
See TracTickets
for help on using tickets.
The URL pattern doesn't contain any backslashes, so the raw-string designation isn't needed here. Brian might choose to add it for consistency and I'll leave this up to him to decide, but it's not a bug.