# HG changeset patch # User Franz Glasner # Date 1639849010 -3600 # Node ID 4c2517e18af0da8fa84150072b3e735a67a80c08 # Parent 42935e4cb8d3fbc2bfe85d0a9645b2db79054fcf FIX: Convert a list ito a tuple before appending it to another tuple diff -r 42935e4cb8d3 -r 4c2517e18af0 configmix/config.py --- a/configmix/config.py Sat Dec 18 11:20:41 2021 +0100 +++ b/configmix/config.py Sat Dec 18 18:36:50 2021 +0100 @@ -977,7 +977,7 @@ real_paths = [] for path in paths: if isinstance(path, (list, tuple)): - real_paths.append(self._path + path) + real_paths.append(self._path + tuple(path)) elif isinstance(path, dict): raise TypeError( "a `dict' is not supported in a jailed configuration")