summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorYikun Jiang <yikunkero@gmail.com>2018-01-15 17:14:32 +0800
committerYikun Jiang <yikunkero@gmail.com>2018-01-15 17:14:32 +0800
commit3e6119becabd4d8b83c138d0d455adfddc33cbfa (patch)
tree639e479dc80627103a19ea038eea30d23cff2e14
parentfefc3ba723865307f4cc2ca287eb59faa4e8a5b1 (diff)
downloadpython-novaclient-3e6119becabd4d8b83c138d0d455adfddc33cbfa.tar.gz
Add missing spaces in `nova list --changes-since` help
trivialfix Change-Id: I394bfa9c2232f5cb150be35aa25d7b895fc40046
-rw-r--r--novaclient/v2/shell.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/novaclient/v2/shell.py b/novaclient/v2/shell.py
index 8ad018c4..3d8edb63 100644
--- a/novaclient/v2/shell.py
+++ b/novaclient/v2/shell.py
@@ -1442,8 +1442,8 @@ def _print_flavor(flavor):
dest='changes_since',
metavar='<changes_since>',
default=None,
- help=_("List only servers changed after a certain point of time."
- "The provided time should be an ISO 8061 formatted time."
+ help=_("List only servers changed after a certain point of time. "
+ "The provided time should be an ISO 8061 formatted time. "
"ex 2016-03-04T06:27:59Z ."))
@utils.arg(
'--tags',