diff options
author | Scott Moser <smoser@ubuntu.com> | 2012-03-07 09:58:54 -0500 |
---|---|---|
committer | Scott Moser <smoser@ubuntu.com> | 2012-03-07 09:58:54 -0500 |
commit | 78d33bcbabba8a38d659f54f92d703d3cc562a1f (patch) | |
tree | d3ca942c046d687db197ad944ecdb8c66f7ea230 | |
parent | 8e705c8542719cf4d90083c9432497ff525247ce (diff) | |
download | vyos-cloud-init-78d33bcbabba8a38d659f54f92d703d3cc562a1f.tar.gz vyos-cloud-init-78d33bcbabba8a38d659f54f92d703d3cc562a1f.zip |
pylint/pep8 cleanup
-rw-r--r-- | cloudinit/DataSourceMaaS.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/cloudinit/DataSourceMaaS.py b/cloudinit/DataSourceMaaS.py index 4c89c2eb..c168013b 100644 --- a/cloudinit/DataSourceMaaS.py +++ b/cloudinit/DataSourceMaaS.py @@ -258,14 +258,13 @@ if __name__ == "__main__": headers = oauth_headers(url, c_key, t_key, t_sec, c_sec) print "%s\n %s\n" % (url, headers) return headers - cb = None (c_key, t_key, t_sec, c_sec) = (sys.argv + ["", "", "", ""])[2:6] if c_key: print "oauth headers (%s)" % str((c_key, t_key, t_sec, c_sec,)) (userdata, metadata) = read_maas_seed_url(seed, my_headers) else: (userdata, metadata) = read_maas_seed_url(seed) - + else: (userdata, metadata) = read_maas_seed_dir(seed) |