summaryrefslogtreecommitdiff
path: root/cloudinit/sources/helpers/openstack.py
diff options
context:
space:
mode:
authorScott Moser <smoser@ubuntu.com>2016-06-15 22:50:12 -0400
committerScott Moser <smoser@ubuntu.com>2016-06-15 22:50:12 -0400
commitd4b587ebf500ddc2259fffc94a3c69c199c9a427 (patch)
tree987a743859aadb4bf2ad3daf0cc9e62afc92294c /cloudinit/sources/helpers/openstack.py
parent8311e8f7a2d4ad782015c0eb4d22efd0c5a8af0f (diff)
downloadvyos-cloud-init-d4b587ebf500ddc2259fffc94a3c69c199c9a427.tar.gz
vyos-cloud-init-d4b587ebf500ddc2259fffc94a3c69c199c9a427.zip
fix some errors reported by pylint
pylint --errors-only found several errors. Some of the changes here represent real errors, others just code that pylint did not like.
Diffstat (limited to 'cloudinit/sources/helpers/openstack.py')
-rw-r--r--cloudinit/sources/helpers/openstack.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/cloudinit/sources/helpers/openstack.py b/cloudinit/sources/helpers/openstack.py
index 494335b3..d52cb56a 100644
--- a/cloudinit/sources/helpers/openstack.py
+++ b/cloudinit/sources/helpers/openstack.py
@@ -157,7 +157,7 @@ class BaseReader(object):
pass
@abc.abstractmethod
- def _path_read(self, path):
+ def _path_read(self, path, decode=False):
pass
@abc.abstractmethod