diff options
author | Scott Moser <smoser@ubuntu.com> | 2012-01-12 16:56:05 +0100 |
---|---|---|
committer | Scott Moser <smoser@ubuntu.com> | 2012-01-12 16:56:05 +0100 |
commit | 7c38d4b469d3863443ec3322f0def25672c545db (patch) | |
tree | ed36795d127106fe5fb56c6593fe2c4876ca41f2 /cloudinit | |
parent | 005a63f5781b99a1f666ab03d9e4c17d151635a1 (diff) | |
download | vyos-cloud-init-7c38d4b469d3863443ec3322f0def25672c545db.tar.gz vyos-cloud-init-7c38d4b469d3863443ec3322f0def25672c545db.zip |
[PATCH 13/13] Disable bogus pylint warnings
From: Juerg Haefliger <juerg.haefliger@hp.com>
Diffstat (limited to 'cloudinit')
-rw-r--r-- | cloudinit/DataSourceOVF.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cloudinit/DataSourceOVF.py b/cloudinit/DataSourceOVF.py index e4d28aba..1c510688 100644 --- a/cloudinit/DataSourceOVF.py +++ b/cloudinit/DataSourceOVF.py @@ -70,7 +70,7 @@ class DataSourceOVF(DataSource.DataSource): if contents: (md, ud, cfg) = read_ovf_environment(contents) self.environment = contents - found.append(name) + found.append(name) # pylint: disable=W0631 # There was no OVF transports found if len(found) == 0: |