summaryrefslogtreecommitdiffstats
path: root/keystone
diff options
context:
space:
mode:
authorJenkins <jenkins@review.openstack.org>2013-07-16 02:20:02 +0000
committerGerrit Code Review <review@openstack.org>2013-07-16 02:20:02 +0000
commite043094f243ed8932aa51aeb96505e7b8298c92e (patch)
tree52069f8a670c82b764b197279a823594e80dc421 /keystone
parentef342fef4838296f2a84b831863a6eb16fcda744 (diff)
parent03e7902d3f84b1d1110f65a4fa58522322707bb7 (diff)
downloadkeystone-e043094f243ed8932aa51aeb96505e7b8298c92e.tar.gz
keystone-e043094f243ed8932aa51aeb96505e7b8298c92e.tar.xz
keystone-e043094f243ed8932aa51aeb96505e7b8298c92e.zip
Merge "Python 3.x compatible use of print"
Diffstat (limited to 'keystone')
-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):