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/CloudConfig/cc_landscape.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/CloudConfig/cc_landscape.py')
-rw-r--r-- | cloudinit/CloudConfig/cc_landscape.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cloudinit/CloudConfig/cc_landscape.py b/cloudinit/CloudConfig/cc_landscape.py index e3e4f7ba..22a90665 100644 --- a/cloudinit/CloudConfig/cc_landscape.py +++ b/cloudinit/CloudConfig/cc_landscape.py @@ -32,7 +32,7 @@ lsc_builtincfg = { } } -def handle(name,cfg,cloud,log,args): +def handle(_name,cfg,_cloud,log,_args): """ Basically turn a top level 'landscape' entry with a 'client' dict and render it to ConfigObj format under '[client]' section in |