From 814595275293af836ceed7aeedf8412d94b13794 Mon Sep 17 00:00:00 2001 From: Pavel Zuna Date: Thu, 10 Feb 2011 13:00:00 -0500 Subject: Translate docstrings. --- ipalib/plugable.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'ipalib/plugable.py') diff --git a/ipalib/plugable.py b/ipalib/plugable.py index 723414ce..26ce366f 100644 --- a/ipalib/plugable.py +++ b/ipalib/plugable.py @@ -181,7 +181,7 @@ class Plugin(ReadOnly): self.bases = tuple( '%s.%s' % (b.__module__, b.__name__) for b in cls.__bases__ ) - self.doc = inspect.getdoc(cls) + self.doc = _(inspect.getdoc(cls)) if self.doc is None: self.summary = '<%s>' % self.fullname else: -- cgit