Mercurial > hgrepos > Python > libs > ConfigMix
comparison configmix/config.py @ 548:325008573bc6
FIX: Assign to _JailedConfiguration._path_string only if not yet done
| author | Franz Glasner <fzglas.hg@dom66.de> |
|---|---|
| date | Sat, 01 Jan 2022 21:38:46 +0100 |
| parents | 491413368c7c |
| children | 79db28e879f8 |
comparison
equal
deleted
inserted
replaced
| 547:1cbe8b0f2b78 | 548:325008573bc6 |
|---|---|
| 1018 if self._path: | 1018 if self._path: |
| 1019 v = _HIER_SEPARATOR.join([quote(p) for p in self._path]) \ | 1019 v = _HIER_SEPARATOR.join([quote(p) for p in self._path]) \ |
| 1020 + _HIER_SEPARATOR | 1020 + _HIER_SEPARATOR |
| 1021 else: | 1021 else: |
| 1022 v = _EMPTY_STR | 1022 v = _EMPTY_STR |
| 1023 self._path_string = v | 1023 self._path_string = v |
| 1024 return v | 1024 return v |
| 1025 | 1025 |
| 1026 @property | 1026 @property |
| 1027 def base(self): | 1027 def base(self): |
| 1028 """Ask for the base (aka parent) configuration". | 1028 """Ask for the base (aka parent) configuration". |
