]> git.ipfire.org Git - thirdparty/gnulib.git/commitdiff
config: fix "local" key
authorDmitry Selyutin <ghostmansd@gmail.com>
Sun, 1 Oct 2017 17:25:06 +0000 (20:25 +0300)
committerDmitry Selyutin <ghostmansd@gmail.com>
Sun, 1 Oct 2017 17:25:06 +0000 (20:25 +0300)
pygnulib/config.py

index f1810fb1817a21a783696aafe71762327c6341d3..a32cb302ceaf50481419e81a1fb5a8a8870274bb 100644 (file)
@@ -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