summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorbhagyashris <bhagyashri.shewale@nttdata.com>2016-06-21 15:20:15 +0530
committerbhagyashris <bhagyashri.shewale@nttdata.com>2016-06-21 15:20:15 +0530
commite8161526ca5fd109ffb2446e083f61892b107d4f (patch)
treee6a70661e1101ab14bccddbfb1a34f1845fb3ee3
parent47101792d877cc2ca7f5746c421873fed8d2a605 (diff)
downloadpython-saharaclient-e8161526ca5fd109ffb2446e083f61892b107d4f.tar.gz
print statment has become a function in py3
Change-Id: Iba2adae27bbe74f98254df34b493600df6c05b39 Closes-bug: #1594741
-rw-r--r--tools/install_venv.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/install_venv.py b/tools/install_venv.py
index 4d8feea..5344499 100644
--- a/tools/install_venv.py
+++ b/tools/install_venv.py
@@ -42,7 +42,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):