Use print_function compatible syntax

This changes the code to use a python 3.x compatible
print function syntax (or import from __future__ where
necessary)

Change-Id: Ia1f19d0ac082853d25c7c9b754b440469c0526eb
This commit is contained in:
Dirk Mueller
2013-06-24 15:41:51 +02:00
parent 123b386a1b
commit e6f6890ac0
7 changed files with 15 additions and 13 deletions

View File

@@ -33,7 +33,7 @@ CONF = cfg.CONF
def do_db_version():
"""Print database's current migration level."""
print migration.db_version()
print(migration.db_version())
def do_db_sync():