Fix the copy module to use the argsfile method

This commit is contained in:
Michael DeHaan 2012-03-14 19:09:44 -04:00
parent aae72ec617
commit 81a27b9c88

10
copy
View file

@ -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("=")