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 Federico Jaramillo Martínez)

There is a duplicate call to self.update on __init__ of class RequestContext.

This patch just removes one of them.

https://github.com/django/django/pull/11545

Change History (2)

comment:1 by Federico Jaramillo Martínez, 5 years ago

Description: modified (diff)

comment:2 by Mariusz Felisiak, 5 years ago

Component: UncategorizedTemplate system
Resolution: invalid
Status: newclosed
Type: UncategorizedCleanup/optimization

update() call is necessary (see comment).

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