diff options
author | Jan Cholasta <jcholast@redhat.com> | 2011-04-21 10:13:06 +0200 |
---|---|---|
committer | Martin Kosek <mkosek@redhat.com> | 2011-04-21 10:41:29 +0200 |
commit | 5700920627b8ac5e303e37d23a0051d0799a4801 (patch) | |
tree | 1bd01923eebd29a6a1fe12fdc66e0259d1d58da1 /ipalib/text.py | |
parent | ccde1154215c89ac6ad0982425555be59ab1c699 (diff) | |
download | freeipa-5700920627b8ac5e303e37d23a0051d0799a4801.tar.gz freeipa-5700920627b8ac5e303e37d23a0051d0799a4801.tar.xz freeipa-5700920627b8ac5e303e37d23a0051d0799a4801.zip |
Fix uninitialized attributes.
Diffstat (limited to 'ipalib/text.py')
-rw-r--r-- | ipalib/text.py | 1 |
1 files changed, 1 insertions, 0 deletions
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): """ |