summaryrefslogtreecommitdiffstats
path: root/keystone/cli.py
diff options
context:
space:
mode:
Diffstat (limited to 'keystone/cli.py')
-rw-r--r--keystone/cli.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/keystone/cli.py b/keystone/cli.py
index 598bd409..21d2ad40 100644
--- a/keystone/cli.py
+++ b/keystone/cli.py
@@ -74,7 +74,7 @@ class DbVersion(BaseApp):
@staticmethod
def main():
- print migration.db_version()
+ print(migration.db_version())
class BaseCertificateSetup(BaseApp):
@@ -180,7 +180,7 @@ class ExportLegacyCatalog(BaseApp):
def main():
from keystone.common.sql import legacy
migration = legacy.LegacyMigration(CONF.command.old_db)
- print '\n'.join(migration.dump_catalog())
+ print('\n'.join(migration.dump_catalog()))
class ImportNovaAuth(BaseApp):