X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/ed5230f0e823445f56e7d6940b6fb178e328718b..f4c3100bad26dff3c99ff4bb9fa19b0d9f7995c7:/sdk/python/arvados/commands/run.py diff --git a/sdk/python/arvados/commands/run.py b/sdk/python/arvados/commands/run.py index be94e7304a..8815565460 100644 --- a/sdk/python/arvados/commands/run.py +++ b/sdk/python/arvados/commands/run.py @@ -52,7 +52,7 @@ def is_in_collection(root, branch): else: sp = os.path.split(root) return is_in_collection(sp[0], os.path.join(sp[1], branch)) - except IOError, OSError: + except (IOError, OSError): return (None, None) # Determine the project to place the output of this command by searching upward @@ -73,7 +73,7 @@ def determine_project(root, current_user): else: sp = os.path.split(root) return determine_project(sp[0], current_user) - except IOError, OSError: + except (IOError, OSError): return current_user # Determine if string corresponds to a file, and if that file is part of a @@ -101,7 +101,7 @@ def statfile(prefix, fn): return prefix+fn -def uploadfiles(files, api, dry_run=False, num_retries=0, project=None): +def uploadfiles(files, api, dry_run=False, num_retries=0, project=None, fnPattern="$(file %s/%s)"): # Find the smallest path prefix that includes all the files that need to be uploaded. # This starts at the root and iteratively removes common parent directory prefixes # until all file pathes no longer have a common parent. @@ -153,7 +153,7 @@ def uploadfiles(files, api, dry_run=False, num_retries=0, project=None): logger.info("Uploaded to %s", item["uuid"]) for c in files: - c.fn = "$(file %s/%s)" % (pdh, c.fn) + c.fn = fnPattern % (pdh, c.fn) os.chdir(orgdir)