From 1f73c958c45121c1ec4f83a55763263eaae77c0b Mon Sep 17 00:00:00 2001 From: yuyafei Date: Tue, 5 Jul 2016 16:54:28 +0800 Subject: [PATCH] Remove white space between print and () TrivialFix Change-Id: Iea9913ec7934ec0879a724ad3f90d52fab8bca48 --- heatclient/openstack/common/cliutils.py | 2 +- tools/install_venv.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/heatclient/openstack/common/cliutils.py b/heatclient/openstack/common/cliutils.py index 5f1170f1..391c7c40 100644 --- a/heatclient/openstack/common/cliutils.py +++ b/heatclient/openstack/common/cliutils.py @@ -268,5 +268,5 @@ def pretty_choice_list(l): def exit(msg=''): if msg: - print (msg, file=sys.stderr) + print(msg, file=sys.stderr) sys.exit(1) diff --git a/tools/install_venv.py b/tools/install_venv.py index 795c2eb2..468d1134 100644 --- a/tools/install_venv.py +++ b/tools/install_venv.py @@ -43,7 +43,7 @@ def print_help(project, venv, root): $ %(root)s/tools/with_venv.sh """ - print (help % dict(project=project, venv=venv, root=root)) + print(help % dict(project=project, venv=venv, root=root)) def main(argv):