Skip to content
Snippets Groups Projects
Commit 52725421 authored by Pierre-Yves David's avatar Pierre-Yves David :octopus:
Browse files

config: use the right API to access template access

Preventing direct access to the underlying dict will help a coming refactoring
of `config`.

Differential Revision: https://phab.mercurial-scm.org/D9922
parent 271dfcb9
No related branches found
No related tags found
1 merge request!72ci: hook network-io tests into the pipeline
......@@ -891,7 +891,7 @@
fp = _open_mapfile(path)
cache, tmap, aliases = _readmapfile(fp, path)
for key, val in conf[b'templates'].items():
for key, val in conf.items(b'templates'):
if not val:
raise error.ParseError(
_(b'missing value'), conf.source(b'templates', key)
......@@ -904,7 +904,7 @@
cache[key] = unquotestring(val)
elif key != b'__base__':
tmap[key] = os.path.join(base, val)
aliases.extend(conf[b'templatealias'].items())
aliases.extend(conf.items(b'templatealias'))
return cache, tmap, aliases
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment