You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@mesos.apache.org by be...@apache.org on 2014/04/21 23:48:31 UTC

git commit: Minor punctuation/grammar cleanups.

Repository: mesos
Updated Branches:
  refs/heads/master 4ec9352af -> 8b678c482


Minor punctuation/grammar cleanups.


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

Branch: refs/heads/master
Commit: 8b678c48279e1837c7ffccf145c51464587455ea
Parents: 4ec9352
Author: Benjamin Hindman <be...@gmail.com>
Authored: Wed Apr 16 12:16:02 2014 -0700
Committer: Benjamin Hindman <be...@gmail.com>
Committed: Mon Apr 21 14:47:33 2014 -0700

----------------------------------------------------------------------
 support/post-reviews.py | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/mesos/blob/8b678c48/support/post-reviews.py
----------------------------------------------------------------------
diff --git a/support/post-reviews.py b/support/post-reviews.py
index cb009be..89ea779 100755
--- a/support/post-reviews.py
+++ b/support/post-reviews.py
@@ -74,7 +74,7 @@ branch = branch_ref.replace('refs/heads/', '', 1)
 
 # do not work on master branch
 if branch == "master":
-    print "we're expecting you to be working on another branch from master!"
+    print "We're expecting you to be working on another branch from master!"
     sys.exit(1)
 
 temporary_branch = '_post-reviews_' + branch
@@ -104,7 +104,7 @@ log = execute(['git',
                merge_base + '..HEAD']).strip()
 
 if len(log) <= 0:
-    print "No new change compare with master branch!"
+    print "No new changes compared with master branch!"
     sys.exit(1)
 
 shas = []