# HG changeset patch # User Marcin Kuzminski # Date 2013-02-09 18:45:10 # Node ID b76a595b7a5e59a6e357a365dedcca3d54b7fbdb # Parent cfc0fef66ddd75f7018ebb6c038f373f424c2f68 pasters RhodeCode commands help text improvements diff --git a/rhodecode/lib/dbmigrate/__init__.py b/rhodecode/lib/dbmigrate/__init__.py --- a/rhodecode/lib/dbmigrate/__init__.py +++ b/rhodecode/lib/dbmigrate/__init__.py @@ -41,7 +41,7 @@ class UpgradeDb(BasePasterCommand): min_args = 1 usage = "CONFIG_FILE" - summary = "Upgrades current db to newer version given configuration file" + summary = "Upgrades current db to newer version" group_name = "RhodeCode" parser = Command.standard_parser(verbose=True) diff --git a/rhodecode/lib/indexers/__init__.py b/rhodecode/lib/indexers/__init__.py --- a/rhodecode/lib/indexers/__init__.py +++ b/rhodecode/lib/indexers/__init__.py @@ -105,7 +105,7 @@ class MakeIndex(BasePasterCommand): min_args = 1 usage = "CONFIG_FILE" - summary = "Creates index for full text search given configuration file" + summary = "Creates or update full text search index" group_name = "RhodeCode" takes_config_file = -1 parser = Command.standard_parser(verbose=True)