summaryrefslogtreecommitdiffstats
path: root/src/lib/Bcfg2/Server/Plugins/Packages/Pkgng.py
diff options
context:
space:
mode:
authorSol Jerome <sol.jerome@gmail.com>2014-10-14 05:30:00 -0500
committerSol Jerome <sol.jerome@gmail.com>2014-10-14 05:30:00 -0500
commit7adaa9488f53cdd73123682e7ad0cd6544eef361 (patch)
treed465866dc6bf107941be63a2dd80a2028de0a8a9 /src/lib/Bcfg2/Server/Plugins/Packages/Pkgng.py
parent6dc2b0306981e8d1be9c0090a3a85cf2c838fd28 (diff)
parentb32b4b910f03a1914dedf9a86770faebd3960c94 (diff)
downloadbcfg2-7adaa9488f53cdd73123682e7ad0cd6544eef361.tar.gz
bcfg2-7adaa9488f53cdd73123682e7ad0cd6544eef361.tar.bz2
bcfg2-7adaa9488f53cdd73123682e7ad0cd6544eef361.zip
Merge branch 'fix-pkgng' of https://github.com/AlexanderS/bcfg2
Diffstat (limited to 'src/lib/Bcfg2/Server/Plugins/Packages/Pkgng.py')
-rw-r--r--src/lib/Bcfg2/Server/Plugins/Packages/Pkgng.py5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/lib/Bcfg2/Server/Plugins/Packages/Pkgng.py b/src/lib/Bcfg2/Server/Plugins/Packages/Pkgng.py
index 13f2c84e5..e393cabfe 100644
--- a/src/lib/Bcfg2/Server/Plugins/Packages/Pkgng.py
+++ b/src/lib/Bcfg2/Server/Plugins/Packages/Pkgng.py
@@ -21,8 +21,7 @@ class PkgngCollection(Collection):
overrides nothing, and defers all operations to :class:`PacSource`
"""
- def __init__(self, metadata, sources, cachepath, basepath, fam,
- debug=False):
+ def __init__(self, metadata, sources, cachepath, basepath, debug=False):
# we define an __init__ that just calls the parent __init__,
# so that we can set the docstring on __init__ to something
# different from the parent __init__ -- namely, the parent
@@ -30,7 +29,7 @@ class PkgngCollection(Collection):
# which we use to delineate the actual docs from the
# .. autoattribute hacks we have to do to get private
# attributes included in sphinx 1.0 """
- Collection.__init__(self, metadata, sources, cachepath, basepath, fam,
+ Collection.__init__(self, metadata, sources, cachepath, basepath,
debug=debug)
__init__.__doc__ = Collection.__init__.__doc__.split(".. -----")[0]