diff options
author | Scott Moser <smoser@brickies.net> | 2016-11-10 21:01:12 -0500 |
---|---|---|
committer | Scott Moser <smoser@brickies.net> | 2016-11-10 21:01:12 -0500 |
commit | 584b8434872322a9f617831742cc6b15977ecfbc (patch) | |
tree | 2b4bf7cba8b20817789276ed34a108172ec4e119 /cloudinit/config/cc_ca_certs.py | |
parent | bf4010a9c379e2109b030af558033014f9137f47 (diff) | |
download | vyos-cloud-init-584b8434872322a9f617831742cc6b15977ecfbc.tar.gz vyos-cloud-init-584b8434872322a9f617831742cc6b15977ecfbc.zip |
pep8: fix style errors reported by pycodestyle 2.1.0
pycodestyle 2.1.0 is in Ubuntu zesty, and complained about the
changes made here. Simple style changes. This makes 'make pep8'
pass again when built in a zesty build system with proposed enabled.
Diffstat (limited to 'cloudinit/config/cc_ca_certs.py')
-rw-r--r-- | cloudinit/config/cc_ca_certs.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cloudinit/config/cc_ca_certs.py b/cloudinit/config/cc_ca_certs.py index 8d319e22..df77ba62 100644 --- a/cloudinit/config/cc_ca_certs.py +++ b/cloudinit/config/cc_ca_certs.py @@ -82,8 +82,8 @@ def add_ca_certs(certs): # We have to strip the content because blank lines in the file # causes subsequent entries to be ignored. (LP: #1077020) orig = util.load_file(CA_CERT_CONFIG) - cur_cont = '\n'.join([l for l in orig.splitlines() - if l != CA_CERT_FILENAME]) + cur_cont = '\n'.join([line for line in orig.splitlines() + if line != CA_CERT_FILENAME]) out = "%s\n%s\n" % (cur_cont.rstrip(), CA_CERT_FILENAME) util.write_file(CA_CERT_CONFIG, out, omode="wb") |