Commit 3e1fa46f authored by Reinout van Rees's avatar Reinout van Rees

Changed wording to accommodated tempfiles in addition to cached files

parent bb8f7784
...@@ -1601,7 +1601,7 @@ def _open(base, filename, seen, dl_options, override, downloaded): ...@@ -1601,7 +1601,7 @@ def _open(base, filename, seen, dl_options, override, downloaded):
filename_for_logging = filename filename_for_logging = filename
if downloaded_filename: if downloaded_filename:
filename_for_logging = '%s (cached at %s)' % ( filename_for_logging = '%s (downloaded as %s)' % (
filename, downloaded_filename) filename, downloaded_filename)
result = zc.buildout.configparser.parse( result = zc.buildout.configparser.parse(
fp, filename_for_logging, _default_globals) fp, filename_for_logging, _default_globals)
......
...@@ -524,7 +524,7 @@ accidentally gzip-encoded download and so on. ...@@ -524,7 +524,7 @@ accidentally gzip-encoded download and so on.
While: While:
Initializing. Initializing.
... File contains no section headers. ... File contains no section headers.
file: http://localhost/faulty.cfg (cached at ...), line: 1 file: http://localhost/faulty.cfg (downloaded as ...), line: 1
'This is definitively not\n' 'This is definitively not\n'
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment