diff options
author | Scott Moser <smoser@ubuntu.com> | 2014-09-02 12:18:21 -0400 |
---|---|---|
committer | Scott Moser <smoser@ubuntu.com> | 2014-09-02 12:18:21 -0400 |
commit | cc77628e1ee3cd03d1ec2e17f1d744c8f4b0938b (patch) | |
tree | e9bdcbc699eda6db5e57d35b25d222bead96da12 /tools/hacking.py | |
parent | fbfd3789ede42ad50e0b79f202ab18b65537af52 (diff) | |
parent | e39abc783f7edd6435dbc7ea1fc3d02e6b3955d3 (diff) | |
download | vyos-cloud-init-cc77628e1ee3cd03d1ec2e17f1d744c8f4b0938b.tar.gz vyos-cloud-init-cc77628e1ee3cd03d1ec2e17f1d744c8f4b0938b.zip |
merge from trunk
Diffstat (limited to 'tools/hacking.py')
-rwxr-xr-x | tools/hacking.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tools/hacking.py b/tools/hacking.py index 26a07c53..e7797564 100755 --- a/tools/hacking.py +++ b/tools/hacking.py @@ -71,7 +71,7 @@ def cloud_import_alphabetical(physical_line, line_number, lines): # with or without "as y" length = [2, 4] if (len(split_line) in length and len(split_previous) in length and - split_line[0] == "import" and split_previous[0] == "import"): + split_line[0] == "import" and split_previous[0] == "import"): if split_line[1] < split_previous[1]: return (0, "N306: imports not in alphabetical order (%s, %s)" % (split_previous[1], split_line[1])) @@ -154,7 +154,7 @@ def add_cloud(): if not inspect.isfunction(function): continue if name.startswith("cloud_"): - exec("pep8.%s = %s" % (name, name)) # pylint: disable=W0122 + exec("pep8.%s = %s" % (name, name)) if __name__ == "__main__": # NOVA based 'hacking.py' error codes start with an N @@ -163,7 +163,7 @@ if __name__ == "__main__": pep8.current_file = current_file pep8.readlines = readlines try: - pep8._main() # pylint: disable=W0212 + pep8._main() finally: if len(_missingImport) > 0: print >> sys.stderr, ("%i imports missing in this test environment" |