fix pep8 error under python 3

Under Python 3 print is a function, and the linter does not want to
have white space between the function name and the paren indicating
the call. Remove the space.

Change-Id: I1f262e5d9ff35b6824483cdc401b3f7a80798212
Signed-off-by: Doug Hellmann <doug@doughellmann.com>
This commit is contained in:
Doug Hellmann 2018-06-06 17:06:26 -04:00
parent 67e5953c1c
commit 8e6f9c7186
1 changed files with 1 additions and 1 deletions

View File

@ -87,7 +87,7 @@ def main():
if db_tables:
print(json.dumps(db_tables))
else:
print ("No Tables/Mappings found!")
print("No Tables/Mappings found!")
else:
raise Exception('Option {0} not found !'.format(CONF.db.options))
except Exception as e: