summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authoryuyafei <yu.yafei@zte.com.cn>2016-07-05 16:54:28 +0800
committeryuyafei <yu.yafei@zte.com.cn>2016-07-05 16:54:28 +0800
commit1f73c958c45121c1ec4f83a55763263eaae77c0b (patch)
treebff231e8cb39edce33fb7a4f2849a7529c62ca33
parentd7d76485854c10afba08fdf11267e1a211e7298f (diff)
downloadpython-heatclient-1f73c958c45121c1ec4f83a55763263eaae77c0b.tar.gz
Remove white space between print and ()
TrivialFix Change-Id: Iea9913ec7934ec0879a724ad3f90d52fab8bca48
-rw-r--r--heatclient/openstack/common/cliutils.py2
-rw-r--r--tools/install_venv.py2
2 files changed, 2 insertions, 2 deletions
diff --git a/heatclient/openstack/common/cliutils.py b/heatclient/openstack/common/cliutils.py
index 5f1170f..391c7c4 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 795c2eb..468d113 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 <your command>
"""
- print (help % dict(project=project, venv=venv, root=root))
+ print(help % dict(project=project, venv=venv, root=root))
def main(argv):