diff options
author | Scott Moser <smoser@ubuntu.com> | 2012-01-12 16:51:47 +0100 |
---|---|---|
committer | Scott Moser <smoser@ubuntu.com> | 2012-01-12 16:51:47 +0100 |
commit | 234cefd314a7e1cfb51fad3bdf344d801a8b238d (patch) | |
tree | dadad683214756e91e9a15c5ad88a9f89f8cf572 /cloudinit/DataSource.py | |
parent | df5d51c25523ea04d45f5f077e94885d1847e526 (diff) | |
download | vyos-cloud-init-234cefd314a7e1cfb51fad3bdf344d801a8b238d.tar.gz vyos-cloud-init-234cefd314a7e1cfb51fad3bdf344d801a8b238d.zip |
[PATCH 05/13] Fix pylint warnings W0613 (unused argument)
From: Juerg Haefliger <juerg.haefliger@hp.com>
Diffstat (limited to 'cloudinit/DataSource.py')
-rw-r--r-- | cloudinit/DataSource.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cloudinit/DataSource.py b/cloudinit/DataSource.py index 06061a2e..66763181 100644 --- a/cloudinit/DataSource.py +++ b/cloudinit/DataSource.py @@ -82,7 +82,7 @@ class DataSource: return(keys) - def device_name_to_device(self, name): + def device_name_to_device(self, _name): # translate a 'name' to a device # the primary function at this point is on ec2 # to consult metadata service, that has |