mirror of https://github.com/scrapy/scrapy.git
Merge pull request #6467 from wRAR/fix-typing-error
Fix a typing error with Twisted 24.7.0.
This commit is contained in:
commit
7914437a65
|
|
@ -208,7 +208,7 @@ class MediaPipeline:
|
|||
# minimize cached information for failure
|
||||
result.cleanFailure()
|
||||
result.frames = []
|
||||
result.stack = None
|
||||
result.stack = []
|
||||
|
||||
# This code fixes a memory leak by avoiding to keep references to
|
||||
# the Request and Response objects on the Media Pipeline cache.
|
||||
|
|
|
|||
Loading…
Reference in New Issue