Merge "Move the responsibility for stdout to the CLI module"

This commit is contained in:
Jenkins 2016-09-15 22:47:48 +00:00 committed by Gerrit Code Review
commit fab399e26c
2 changed files with 1 additions and 5 deletions

View File

@ -465,7 +465,7 @@ class DbVersion(BaseApp):
@staticmethod
def main():
assert_not_extension(CONF.command.extension)
migration_helpers.print_db_version()
print(migration_helpers.get_db_version())
class BasePermissionsSetup(BaseApp):

View File

@ -221,10 +221,6 @@ def get_db_version():
get_init_version())
def print_db_version():
print(get_db_version())
def expand_schema():
"""Expand the database schema ahead of data migration.