Opened 5 years ago
Closed 5 years ago
#30623 closed Cleanup/optimization (invalid)
Remove duplicate call to `self.update` on RequestContext
Reported by: | Federico Jaramillo Martínez | Owned by: | nobody |
---|---|---|---|
Component: | Template system | Version: | dev |
Severity: | Normal | Keywords: | |
Cc: | Triage Stage: | Unreviewed | |
Has patch: | yes | Needs documentation: | no |
Needs tests: | no | Patch needs improvement: | no |
Easy pickings: | no | UI/UX: | no |
Description (last modified by )
There is a duplicate call to self.update
on __init__
of class RequestContext
.
This patch just removes one of them.
Change History (2)
comment:1 by , 5 years ago
Description: | modified (diff) |
---|
comment:2 by , 5 years ago
Component: | Uncategorized → Template system |
---|---|
Resolution: | → invalid |
Status: | new → closed |
Type: | Uncategorized → Cleanup/optimization |
Note:
See TracTickets
for help on using tickets.
update()
call is necessary (see comment).