Mercurial > hgrepos > Python > libs > ConfigMix
changeset 438:37424d1f8dcf
Style
| author | Franz Glasner <fzglas.hg@dom66.de> |
|---|---|
| date | Fri, 10 Dec 2021 01:44:12 +0100 |
| parents | bbc5b64e137a |
| children | bd27da55483a |
| files | configmix/config.py |
| diffstat | 1 files changed, 2 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/configmix/config.py Fri Dec 10 01:33:37 2021 +0100 +++ b/configmix/config.py Fri Dec 10 01:44:12 2021 +0100 @@ -522,8 +522,8 @@ if not path: return self try: - # v = self.expand_if_reference(self[path[0]]) - v = self.expand_if_reference(super(Configuration, self).__getitem__(path[0])) + v = self.expand_if_reference( + super(Configuration, self).__getitem__(path[0])) for p in path[1:]: v = self.expand_if_reference(v[p]) except TypeError:
