Fix the copy module to use the argsfile method

reviewable/pr18780/r1
Michael DeHaan 13 years ago
parent aae72ec617
commit 81a27b9c88

10
copy

@ -32,8 +32,14 @@ except ImportError:
# to a dictionary
# FIXME: make more idiomatic
args = " ".join(sys.argv[1:])
items = shlex.split(args)
if len(sys.argv) == 1:
sys.exit(1)
argfile = sys.argv[1]
if not os.path.exists(argfile):
sys.exit(1)
items = shlex.split(open(argfile, 'r').read())
params = {}
for x in items:
(k, v) = x.split("=")

Loading…
Cancel
Save