diff options
author | Joshua Harlow <harlowja@yahoo-inc.com> | 2012-06-19 11:06:49 -0700 |
---|---|---|
committer | Joshua Harlow <harlowja@yahoo-inc.com> | 2012-06-19 11:06:49 -0700 |
commit | 842e109596188f8ef5eb4c75e6f692adfaacc93b (patch) | |
tree | 976649a77a9e6ec474a85c49ae9c3c6ada3ae7f1 /cloudinit | |
parent | f06b5cbf6187dd90b90cc24d3f3c087fe51a6d07 (diff) | |
download | vyos-cloud-init-842e109596188f8ef5eb4c75e6f692adfaacc93b.tar.gz vyos-cloud-init-842e109596188f8ef5eb4c75e6f692adfaacc93b.zip |
Cleanup pylint warning about line length.
Diffstat (limited to 'cloudinit')
-rw-r--r-- | cloudinit/url_helper.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/cloudinit/url_helper.py b/cloudinit/url_helper.py index 0376450f..c69da1bb 100644 --- a/cloudinit/url_helper.py +++ b/cloudinit/url_helper.py @@ -86,7 +86,8 @@ def readurl(url, data=None, timeout=None, excepts = [] LOG.info(("Attempting to open '%s' with %s attempts" - " (%s retries, timeout=%s) to be performed"), url, attempts, retries, timeout) + " (%s retries, timeout=%s) to be performed"), + url, attempts, retries, timeout) open_args = {} if timeout is not None: open_args['timeout'] = int(timeout) |