Remove unneeded `raise` (thanks @lopuhin).

This commit is contained in:
Mikhail Korobov 2016-02-19 18:31:49 +05:00
parent 104027d78d
commit 18a381816d
1 changed files with 1 additions and 1 deletions

View File

@ -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):