summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorBo Wang <bo.wang@easystack.cn>2016-02-01 16:32:12 +0800
committerBo Wang <bo.wang@easystack.cn>2016-02-01 16:42:03 +0800
commit3298ad98c88309c0aab972284b2a403573224c94 (patch)
tree96ac53b8aaa4f5f38689705abbac103c6b6e1cd9 /tools
parent1eacabe686f92df195de6051d21b4c4a1a8e1843 (diff)
downloadpython-heatclient-3298ad98c88309c0aab972284b2a403573224c94.tar.gz
Remove incorrectly used "# flake8: noqa"
"# flake8: noqa" option disables all checks for the whole file. To disable one line we should use "# noqa". Remove unused "# flake8: noqa" and fix hidden hacking errors. Change-Id: I624e96784ae7a22b5a5766f38bdf1fb8ade2d0a2 Closes-Bug: #1540254
Diffstat (limited to 'tools')
-rw-r--r--tools/install_venv.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/install_venv.py b/tools/install_venv.py
index cc21843..1dab63e 100644
--- a/tools/install_venv.py
+++ b/tools/install_venv.py
@@ -22,7 +22,7 @@ import ConfigParser
import os
import sys
-import install_venv_common as install_venv # flake8: noqa
+import install_venv_common as install_venv
def print_help(project, venv, root):
@@ -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):