Remove unneeded `raise` (thanks @lopuhin).

This commit is contained in:
Mikhail Korobov 2016-02-19 18:31:49 +05:00 committed by Paul Tremberth
parent 50f7b416c5
commit 374d7b04fc
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):