diff --git a/doc/source/man/manila-manage.rst b/doc/source/man/manila-manage.rst index b4c7bbaee5..1e8b9cb239 100644 --- a/doc/source/man/manila-manage.rst +++ b/doc/source/man/manila-manage.rst @@ -57,7 +57,7 @@ Manila Db ``manila-manage db stamp `` - Stamp database with given revision. + Stamp database with given version. ``manila-manage db revision `` diff --git a/manila/cmd/manage.py b/manila/cmd/manage.py index a8f702b032..8c9af60c3b 100755 --- a/manila/cmd/manage.py +++ b/manila/cmd/manage.py @@ -237,7 +237,7 @@ class DbCommands(object): @args('version', nargs='?', default=None, help='Version to stamp version table with') def stamp(self, version=None): - """Stamp the revision table with the given version.""" + """Stamp the version table with the given version.""" return migration.stamp(version)