mirror of https://github.com/scrapy/scrapy.git
Remove unneeded `raise` (thanks @lopuhin).
This commit is contained in:
parent
104027d78d
commit
18a381816d
|
|
@ -87,7 +87,7 @@ class Crawler(object):
|
|||
yield self.engine.close()
|
||||
|
||||
if six.PY2:
|
||||
raise six.reraise(*exc_info)
|
||||
six.reraise(*exc_info)
|
||||
raise
|
||||
|
||||
def _create_spider(self, *args, **kwargs):
|
||||
|
|
|
|||
Loading…
Reference in New Issue