]> Savannah Git Hosting - gnulib.git/commitdiff
config: fix po_domain option
authorDmitry Selyutin <ghostmansd@gmail.com>
Sun, 3 Dec 2017 15:53:15 +0000 (18:53 +0300)
committerDmitry Selyutin <ghostmansd@gmail.com>
Sun, 3 Dec 2017 15:53:15 +0000 (18:53 +0300)
pygnulib/config.py

index f97160148609c16549f2a418e9d86873bacfc41e..5787eb73a3202e43cef62fea33e37be54ef64293 100644 (file)
@@ -272,8 +272,8 @@ class Base:
 
     @po_domain.setter
     def po_domain(self, value):
-        _type_assert("po_base", value, str)
-        self.__table["po_base"] = value
+        _type_assert("po_domain", value, str)
+        self.__table["po_domain"] = value
 
 
     @property