You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@yetus.apache.org by bu...@apache.org on 2016/03/10 02:31:08 UTC

yetus git commit: YETUS-332 refer to output_directory correctly post arg parsing.

Repository: yetus
Updated Branches:
  refs/heads/master cbe6f5780 -> 90b06151b


YETUS-332 refer to output_directory correctly post arg parsing.

Signed-off-by: Andrew Wang <an...@cloudera.com>


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 <bu...@apache.org>
Authored: Wed Mar 9 10:31:57 2016 -0800
Committer: Sean Busbey <bu...@apache.org>
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