From 72bb2d09b916ed3120838da6a4821dac40c0cb5e Mon Sep 17 00:00:00 2001 From: Dmitry Selyutin Date: Sun, 3 Dec 2017 18:53:15 +0300 Subject: [PATCH] config: fix po_domain option --- pygnulib/config.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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 -- 2.39.5