diff options
| author | Jenkins <jenkins@review.openstack.org> | 2016-06-07 18:52:37 +0000 |
|---|---|---|
| committer | Gerrit Code Review <review@openstack.org> | 2016-06-07 18:52:37 +0000 |
| commit | 817f5f3196441540ef5b6d092984240d554dd20b (patch) | |
| tree | f1efdd3c5411b5d7b920f22e8a3a60360fdf7640 /openstackclient/common/module.py | |
| parent | 7dc2e1dc08b0692a3accb343c62451fb3d83f4cd (diff) | |
| parent | b36d521ff6d4f7a994d4472c25f8267b6e268d41 (diff) | |
| download | python-openstackclient-817f5f3196441540ef5b6d092984240d554dd20b.tar.gz | |
Merge "Fix i18n supports in commom"
Diffstat (limited to 'openstackclient/common/module.py')
| -rw-r--r-- | openstackclient/common/module.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/openstackclient/common/module.py b/openstackclient/common/module.py index 30c67c68..11895f7a 100644 --- a/openstackclient/common/module.py +++ b/openstackclient/common/module.py @@ -20,6 +20,7 @@ import sys from openstackclient.common import command from openstackclient.common import utils +from openstackclient.i18n import _ class ListCommand(command.Lister): @@ -61,7 +62,7 @@ class ListModule(command.ShowOne): '--all', action='store_true', default=False, - help='Show all modules that have version information', + help=_('Show all modules that have version information'), ) return parser |
