diff options
author | Joshua Harlow <harlowja@yahoo-inc.com> | 2012-06-18 17:23:49 -0700 |
---|---|---|
committer | Joshua Harlow <harlowja@yahoo-inc.com> | 2012-06-18 17:23:49 -0700 |
commit | 80cd15a3d9734bf143d420c49a518d358c3569e3 (patch) | |
tree | a44c89377957a97fac2322b99d0a63d0f408a540 /cloudinit/url_helper.py | |
parent | d2de0fbdcadd09a94ffb399e8969cc7bbcb66340 (diff) | |
download | vyos-cloud-init-80cd15a3d9734bf143d420c49a518d358c3569e3.tar.gz vyos-cloud-init-80cd15a3d9734bf143d420c49a518d358c3569e3.zip |
Adjust log message to say "open" instead of 'read' since this function can also post data...
Diffstat (limited to 'cloudinit/url_helper.py')
-rw-r--r-- | cloudinit/url_helper.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cloudinit/url_helper.py b/cloudinit/url_helper.py index 56649c1b..5b5b41e2 100644 --- a/cloudinit/url_helper.py +++ b/cloudinit/url_helper.py @@ -85,7 +85,7 @@ def readurl(url, data=None, timeout=None, attempts = retries + 1 excepts = [] - LOG.info(("Attempting to read from %s with %s attempts" + LOG.info(("Attempting to open %s with %s attempts" " (%s retries) to be performed"), url, attempts, retries) open_args = {} if timeout is not None: |