Merge pull request #10802 from pahaz/patch-2

Python 3 compatible `except` statment
This commit is contained in:
Brian Coca 2015-04-21 10:15:59 -04:00
commit 351591fb80

View file

@ -92,7 +92,7 @@ class TaskQueueManager:
if fileno is not None:
try:
new_stdin = os.fdopen(os.dup(fileno))
except OSError, e:
except OSError:
# couldn't dupe stdin, most likely because it's
# not a valid file descriptor, so we just rely on
# using the one that was passed in