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:
@@ -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():
|
||||
|
||||
Reference in New Issue
Block a user