You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@allura.apache.org by tv...@apache.org on 2013/02/05 21:23:35 UTC

[13/42] git commit: [#4691] Fixed description of --all and --step options for refresh-last-commits.py

[#4691] Fixed description of --all and --step options for refresh-last-commits.py

Signed-off-by: Cory Johns <jo...@geek.net>


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

Branch: refs/heads/master
Commit: ce58e3642a9468d0e7023aedb5c929f4dfdb3d4a
Parents: 0da93a0
Author: Cory Johns <jo...@geek.net>
Authored: Wed Dec 5 17:48:24 2012 +0000
Committer: Tim Van Steenburgh <tv...@gmail.com>
Committed: Tue Feb 5 20:22:50 2013 +0000

----------------------------------------------------------------------
 scripts/refresh-last-commits.py |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-allura/blob/ce58e364/scripts/refresh-last-commits.py
----------------------------------------------------------------------
diff --git a/scripts/refresh-last-commits.py b/scripts/refresh-last-commits.py
index ed753ab..e45bb49 100644
--- a/scripts/refresh-last-commits.py
+++ b/scripts/refresh-last-commits.py
@@ -181,9 +181,9 @@ def parse_options():
     parser.add_argument('--diffs', action='store_true', dest='diffs',
             default=False, help='Refresh diffs as well as LCDs')
     parser.add_argument('--all', action='store_const', dest='step',
-            const=1, default=100, help='Refresh diffs as well as LCDs')
+            const=1, default=100, help='Refresh the LCD for every commit instead of every 100th')
     parser.add_argument('--step', action='store', dest='step',
-            type=int, default=100, help='Refresh diffs as well as LCDs')
+            type=int, default=100, help='Refresh the LCD for every Nth commit instead of every 100th')
     return parser.parse_args()
 
 if __name__ == '__main__':