# HG changeset patch # User Franz Glasner # Date 1652421100 -7200 # Node ID e8f3e970e41164f3d28db8418dd3a1b1f9805054 # Parent df58983f28a20ab17ec774b7d2f03e8b03ac2ea6 __len__() for jails also now internally expands: this is for consistency with __bool__ when applyint to non-container jails (which are possible) diff -r df58983f28a2 -r e8f3e970e411 configmix/config.py --- a/configmix/config.py Fri Mar 11 01:53:08 2022 +0100 +++ b/configmix/config.py Fri May 13 07:51:40 2022 +0200 @@ -1259,7 +1259,7 @@ def __len__(self): """Length support for containers""" - return len(self._base.getvarl(*self._path)) + return len(self._base.getvarl_s(*self._path)) if PY2: