You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@mesos.apache.org by vi...@apache.org on 2014/05/09 20:15:22 UTC

git commit: Minor fix in post-reviews.

Repository: mesos
Updated Branches:
  refs/heads/master f078e0cc2 -> ad4f129cd


Minor fix in post-reviews.


Project: http://git-wip-us.apache.org/repos/asf/mesos/repo
Commit: http://git-wip-us.apache.org/repos/asf/mesos/commit/ad4f129c
Tree: http://git-wip-us.apache.org/repos/asf/mesos/tree/ad4f129c
Diff: http://git-wip-us.apache.org/repos/asf/mesos/diff/ad4f129c

Branch: refs/heads/master
Commit: ad4f129cd35fc566b20b5b2826f17de50f2d3897
Parents: f078e0c
Author: Vinod Kone <vi...@twitter.com>
Authored: Thu May 8 23:20:57 2014 -0700
Committer: Vinod Kone <vi...@twitter.com>
Committed: Fri May 9 11:15:14 2014 -0700

----------------------------------------------------------------------
 support/post-reviews.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/mesos/blob/ad4f129c/support/post-reviews.py
----------------------------------------------------------------------
diff --git a/support/post-reviews.py b/support/post-reviews.py
index 2d5447b..0ba14d8 100755
--- a/support/post-reviews.py
+++ b/support/post-reviews.py
@@ -67,7 +67,7 @@ def execute(command, ignore_errors=False):
 post_review = None
 if execute(['post-review', '--version'], ignore_errors=True):
   post_review = ['post-review']
-elif execute('rbt', '--version', ignore_errors=True):
+elif execute(['rbt', '--version'], ignore_errors=True):
   post_review = ['rbt', 'post']
 else:
   print 'Please install RBTools before proceeding'