diff options
author | Scott Moser <smoser@ubuntu.com> | 2015-08-04 22:01:27 -0500 |
---|---|---|
committer | Scott Moser <smoser@ubuntu.com> | 2015-08-04 22:01:27 -0500 |
commit | 5585b397cfb4ba397e9cfba3d86e3d10af20eb71 (patch) | |
tree | 945e0494d57ac1018fc18875b03f8f5c47c0ff4c /bin | |
parent | 02cc30c4ba60050c15c56927fa1bad50299ed8c3 (diff) | |
download | vyos-cloud-init-5585b397cfb4ba397e9cfba3d86e3d10af20eb71.tar.gz vyos-cloud-init-5585b397cfb4ba397e9cfba3d86e3d10af20eb71.zip |
fix pep8
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/cloud-init | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/bin/cloud-init b/bin/cloud-init index 51253c42..40cdbb06 100755 --- a/bin/cloud-init +++ b/bin/cloud-init @@ -628,7 +628,8 @@ def main(): if args.local: rname, rdesc = ("init-local", "searching for local datasources") else: - rname, rdesc = ("init-network", "searching for network datasources") + rname, rdesc = ("init-network", + "searching for network datasources") elif name == "modules": rname, rdesc = ("modules-%s" % args.mode, "running modules for %s" % args.mode) |