diff options
author | René 'Necoro' Neumann <necoro@necoro.net> | 2008-07-08 14:52:57 +0200 |
---|---|---|
committer | René 'Necoro' Neumann <necoro@necoro.net> | 2008-07-08 14:52:57 +0200 |
commit | b21023ecc7dd95339f83ae044ad642b3a863ecef (patch) | |
tree | 5b9cd85283d759fbbeaffae87493a674062a9036 /portato | |
parent | 7346ef212b6d4cb34182af7620df04e52c940fdb (diff) | |
download | portato-b21023ecc7dd95339f83ae044ad642b3a863ecef.tar.gz portato-b21023ecc7dd95339f83ae044ad642b3a863ecef.tar.bz2 portato-b21023ecc7dd95339f83ae044ad642b3a863ecef.zip |
Added the reload_portage plugin
Diffstat (limited to '')
-rw-r--r-- | portato/plugin.py | 13 |
1 files changed, 9 insertions, 4 deletions
diff --git a/portato/plugin.py b/portato/plugin.py index 5994328..0119909 100644 --- a/portato/plugin.py +++ b/portato/plugin.py @@ -186,7 +186,12 @@ class Plugin (object): if hasattr(self, "__description__"): return self.__description__ else: - return getattr(self, "__doc__", "") + doc = getattr(self, "__doc__", "") + + if not doc or doc == Plugin.__doc__: + return "" + else: + return doc @property def name (self): @@ -218,15 +223,15 @@ class Plugin (object): @property def deps (self): """ - Returns an iterator of the dependencies or ``None`` if there are none. + Returns an iterator of the dependencies or ``[]`` if there are none. The dependencies are given in the ``__dependency__`` variable. - :rtype: None or iter<string> + :rtype: [] or iter<string> """ if hasattr(self, "__dependency__"): return iter(self.__dependency__) else: - return None + return [] @property def enabled (self): |