Repository: yetus Updated Branches: refs/heads/master cbe6f5780 -> 90b06151b
YETUS-332 refer to output_directory correctly post arg parsing. Signed-off-by: Andrew Wang <[email protected]> Project: http://git-wip-us.apache.org/repos/asf/yetus/repo Commit: http://git-wip-us.apache.org/repos/asf/yetus/commit/90b06151 Tree: http://git-wip-us.apache.org/repos/asf/yetus/tree/90b06151 Diff: http://git-wip-us.apache.org/repos/asf/yetus/diff/90b06151 Branch: refs/heads/master Commit: 90b06151b1013eb4ffb2038c9c2590158d5f1244 Parents: cbe6f57 Author: Sean Busbey <[email protected]> Authored: Wed Mar 9 10:31:57 2016 -0800 Committer: Sean Busbey <[email protected]> Committed: Wed Mar 9 17:30:15 2016 -0800 ---------------------------------------------------------------------- release-doc-maker/releasedocmaker.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/yetus/blob/90b06151/release-doc-maker/releasedocmaker.py ---------------------------------------------------------------------- diff --git a/release-doc-maker/releasedocmaker.py b/release-doc-maker/releasedocmaker.py index ee3d284..07a1124 100755 --- a/release-doc-maker/releasedocmaker.py +++ b/release-doc-maker/releasedocmaker.py @@ -552,7 +552,7 @@ def main(): print "Unable to create output directory %s: %s" % \ (options.output_directory, exc.message) sys.exit(1) - os.chdir(options.output_directory[0]) + os.chdir(options.output_directory) if options.base_url is not None: global JIRA_BASE_URL
