diff options
author | Scott Moser <smoser@ubuntu.com> | 2012-07-09 14:01:36 -0400 |
---|---|---|
committer | Scott Moser <smoser@ubuntu.com> | 2012-07-09 14:01:36 -0400 |
commit | 285e127de45f0feed7170bafc79b502170d5b381 (patch) | |
tree | de01eb4c3d8e17552f3b725386452bae9bf46f27 /cloudinit/sources/DataSourceEc2.py | |
parent | 972c4e0d1bcfe40414dfb08525eb0fc35cec102e (diff) | |
download | vyos-cloud-init-285e127de45f0feed7170bafc79b502170d5b381.tar.gz vyos-cloud-init-285e127de45f0feed7170bafc79b502170d5b381.zip |
fix 'make pylint' warnings
On my system (quantal) this 'make pylint' does not complain now.
Diffstat (limited to 'cloudinit/sources/DataSourceEc2.py')
-rw-r--r-- | cloudinit/sources/DataSourceEc2.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/cloudinit/sources/DataSourceEc2.py b/cloudinit/sources/DataSourceEc2.py index 6f7cfd43..cde73de3 100644 --- a/cloudinit/sources/DataSourceEc2.py +++ b/cloudinit/sources/DataSourceEc2.py @@ -98,7 +98,8 @@ class DataSourceEc2(sources.DataSource): if not availability_zone: return None - mirror_tpl = self.distro.get_option('package_mirror_ec2_template', None) + mirror_tpl = self.distro.get_option('package_mirror_ec2_template', + None) if mirror_tpl is None: return None |