mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2025-12-07 13:11:29 +00:00
Further pleasing pylint deity
This commit is contained in:
@@ -598,7 +598,7 @@ class Metasploit(object):
|
||||
|
||||
except select.error as ex:
|
||||
# Reference: https://github.com/andymccurdy/redis-py/pull/743/commits/2b59b25bb08ea09e98aede1b1f23a270fc085a9f
|
||||
if (ex[0] if six.PY2 else ex.errno) == errno.EINTR:
|
||||
if ex.args[0] == errno.EINTR:
|
||||
continue
|
||||
else:
|
||||
return proc.returncode
|
||||
|
||||
Reference in New Issue
Block a user