summaryrefslogtreecommitdiffstats
path: root/src/lib/Bcfg2/Server/Plugins/Packages/Source.py
diff options
context:
space:
mode:
authorChris St. Pierre <chris.a.st.pierre@gmail.com>2012-09-19 11:40:52 -0400
committerChris St. Pierre <chris.a.st.pierre@gmail.com>2012-09-20 11:37:55 -0400
commit92bc95f86a834b2853c77bbbfa1c0021213e1e17 (patch)
treefd0445f1434495e8cc7fc13af553889285d168a6 /src/lib/Bcfg2/Server/Plugins/Packages/Source.py
parent52cee5a20d6981e35b9df1c7438dffd1210f5a78 (diff)
downloadbcfg2-92bc95f86a834b2853c77bbbfa1c0021213e1e17.tar.gz
bcfg2-92bc95f86a834b2853c77bbbfa1c0021213e1e17.tar.bz2
bcfg2-92bc95f86a834b2853c77bbbfa1c0021213e1e17.zip
documented Packages base class
Diffstat (limited to 'src/lib/Bcfg2/Server/Plugins/Packages/Source.py')
-rw-r--r--src/lib/Bcfg2/Server/Plugins/Packages/Source.py10
1 files changed, 6 insertions, 4 deletions
diff --git a/src/lib/Bcfg2/Server/Plugins/Packages/Source.py b/src/lib/Bcfg2/Server/Plugins/Packages/Source.py
index d73a942c4..273f6cbb4 100644
--- a/src/lib/Bcfg2/Server/Plugins/Packages/Source.py
+++ b/src/lib/Bcfg2/Server/Plugins/Packages/Source.py
@@ -569,10 +569,12 @@ class Source(Bcfg2.Server.Plugin.Debuggable):
self.save_state()
def filter_unknown(self, unknown):
- """ After :func:`complete`, filter out packages that appear in
- the list of unknown packages but should not be presented to
- the user. :attr:`unknown_filter` is called to assess whether
- or not a package is expected to be unknown.
+ """ After
+ :func:`Bcfg2.Server.Plugins.Packages.Collection._Collection.complete`,
+ filter out packages that appear in the list of unknown
+ packages but should not be presented to the user.
+ :attr:`unknown_filter` is called to assess whether or not a
+ package is expected to be unknown.
:param unknown: A set of unknown packages. The set should be
modified in place.