Opened 16 years ago
Last modified 16 years ago
#7842 closed
raw string identifier missing from django-admin.py — at Version 1
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.
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.