# HG changeset patch # User Jeff Hammel # Date 1321386793 28800 # Node ID 46d5bd33311d9c62b613299fe20a115f1ece40a4 # Parent 60e0e932570e9ee46a0306e331b5982f5a500ae4 fix relative_to a bit diff -r 60e0e932570e -r 46d5bd33311d fetch.py --- a/fetch.py Tue Nov 15 11:45:46 2011 -0800 +++ b/fetch.py Tue Nov 15 11:53:13 2011 -0800 @@ -358,7 +358,7 @@ assert not [i for i in args if not os.path.exists(i)] items = read_manifests(*args) - fetch = Fetch(fetchers, strict=options.strict) + fetch = Fetch(fetchers, relative_to=options.output, strict=options.strict) # download the files fetch.fetch(*items)