Skip to content
Snippets Groups Projects
Commit d1545a19 authored by Sebastien Ponce's avatar Sebastien Ponce
Browse files

Fixed python call to be compatible with python 2.6 (SLC6)

parent eb11c971
Branches
Tags
No related merge requests found
......@@ -349,7 +349,7 @@ class RunningTransfersSet(object):
if self.fake:
isEnded = True
else:
rc = process.poll(-1)
rc = process.poll()
isEnded = (rc!=None)
if isEnded:
# get fileid
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment