From 5700920627b8ac5e303e37d23a0051d0799a4801 Mon Sep 17 00:00:00 2001 From: Jan Cholasta Date: Thu, 21 Apr 2011 10:13:06 +0200 Subject: Fix uninitialized attributes. --- ipalib/text.py | 1 + 1 file changed, 1 insertion(+) (limited to 'ipalib/text.py') diff --git a/ipalib/text.py b/ipalib/text.py index a910cc5f..af532db4 100644 --- a/ipalib/text.py +++ b/ipalib/text.py @@ -154,6 +154,7 @@ class LazyText(object): self.domain = domain self.localedir = localedir self.key = (domain, localedir) + self.args = None def __eq__(self, other): """ -- cgit