From: Dmitry Selyutin Date: Sun, 3 Dec 2017 15:53:15 +0000 (+0300) Subject: config: fix po_domain option X-Git-Url: https://gitweb.git.savannah.gnu.org/gitweb/?a=commitdiff_plain;h=72bb2d09b916ed3120838da6a4821dac40c0cb5e;p=gnulib.git config: fix po_domain option --- diff --git a/pygnulib/config.py b/pygnulib/config.py index f971601486..5787eb73a3 100644 --- a/pygnulib/config.py +++ b/pygnulib/config.py @@ -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