changeset 39016:e849b88a0b7b

config: fix "local" key
author Dmitry Selyutin <ghostmansd@gmail.com>
date Sun, 01 Oct 2017 20:25:06 +0300
parents ee3d8a537ce3
children 71b408ccda5f
files pygnulib/config.py
diffstat 1 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/pygnulib/config.py	Fri Sep 29 22:46:51 2017 +0300
+++ b/pygnulib/config.py	Sun Oct 01 20:25:06 2017 +0300
@@ -117,8 +117,8 @@
 
     @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