From 842e109596188f8ef5eb4c75e6f692adfaacc93b Mon Sep 17 00:00:00 2001 From: Joshua Harlow Date: Tue, 19 Jun 2012 11:06:49 -0700 Subject: Cleanup pylint warning about line length. --- cloudinit/url_helper.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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) -- cgit v1.2.3