Mercurial > hgrepos > Python > libs > ConfigMix
diff configmix/__init__.py @ 539:9546d38cd3f8
Refactor: the parsing of the quoted and dot-separated path string is put into a function that handles also empty inputs properly
| author | Franz Glasner <fzglas.hg@dom66.de> |
|---|---|
| date | Tue, 28 Dec 2021 17:28:19 +0100 |
| parents | 16f077229ec2 |
| children | f454889e41fa |
line wrap: on
line diff
--- a/configmix/__init__.py Tue Dec 28 16:30:48 2021 +0100 +++ b/configmix/__init__.py Tue Dec 28 17:28:19 2021 +0100 @@ -32,7 +32,7 @@ import re from .compat import u2fs -from .config import Configuration, quote, unquote # noqa: F401 +from .config import Configuration, quote, unquote, pathstr2path # noqa: F401 from . import constants
