From: Dmitry Selyutin Date: Sun, 1 Oct 2017 17:25:06 +0000 (+0300) Subject: config: fix "local" key X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=c31d57b38df5b560c6c0b463ef1085f0d95fbaa5;p=thirdparty%2Fgnulib.git config: fix "local" key --- diff --git a/pygnulib/config.py b/pygnulib/config.py index f1810fb181..a32cb302ce 100644 --- a/pygnulib/config.py +++ b/pygnulib/config.py @@ -117,8 +117,8 @@ class Base: @local.setter def local(self, value): - _type_assert_("root", value, str) - self.__table["root"] = _os_.path.normpath(value) + _type_assert_("local", value, str) + self.__table["local"] = _os_.path.normpath(value) @property