Opened 19 years ago
Closed 19 years ago
#3468 closed (fixed)
Trivial - Typo in django/template/__init__.py (self.mgs instead of self.msg)
| Reported by: | Owned by: | Adrian Holovaty | |
|---|---|---|---|
| Component: | Template system | Version: | dev |
| Severity: | Keywords: | typo template VariableDoesNotExist mgs self.mgs | |
| Cc: | Triage Stage: | Unreviewed | |
| Has patch: | yes | Needs documentation: | no |
| Needs tests: | no | Patch needs improvement: | no |
| Easy pickings: | no | UI/UX: | no |
Description
there is a small typo in django/template/init.py in class VariableDoesNotExist:
def __str__(self):
return self.mgs % self.params
<-- should be self.msg
Attachments (1)
Change History (2)
by , 19 years ago
| Attachment: | variablenotfoundtypo.diff added |
|---|
comment:1 by , 19 years ago
| Resolution: | → fixed |
|---|---|
| Status: | new → closed |
Note:
See TracTickets
for help on using tickets.
(In [4465]) Fixed #3468 -- fixed typo in VariableDoesNotExist.str. Pointed out by
Herbert Poul.