summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorNarayan Desai <desai@mcs.anl.gov>2004-08-19 14:54:11 +0000
committerNarayan Desai <desai@mcs.anl.gov>2004-08-19 14:54:11 +0000
commit044bc77657617a902e7b1aae1e182fc2e467ee2e (patch)
treebcb3f466e1b4bf158721525442e12e70522c3272
parent2ea6dccd12ffa66f4fc7e0d8a227e44ada804db2 (diff)
downloadbcfg2-044bc77657617a902e7b1aae1e182fc2e467ee2e.tar.gz
bcfg2-044bc77657617a902e7b1aae1e182fc2e467ee2e.tar.bz2
bcfg2-044bc77657617a902e7b1aae1e182fc2e467ee2e.zip
update to new module path
fix docstring (Logical change 1.43) git-svn-id: https://svn.mcs.anl.gov/repos/bcfg/trunk/bcfg2@256 ce84e21b-d406-0410-9b95-82705330c041
-rw-r--r--src/lib/Server/Generators/pkgmgr.py5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/lib/Server/Generators/pkgmgr.py b/src/lib/Server/Generators/pkgmgr.py
index e4f0ef054..ad88a00b3 100644
--- a/src/lib/Server/Generators/pkgmgr.py
+++ b/src/lib/Server/Generators/pkgmgr.py
@@ -2,8 +2,7 @@
from re import compile
-from Bcfg2.Server.Generator import Generator
-from Bcfg2.Server.GeneratorUtils import DirectoryBacked, XMLFileBacked
+from Bcfg2.Server.Generator import Generator, DirectoryBacked, XMLFileBacked
class PackageEntry(XMLFileBacked):
__identifier__ = 'image'
@@ -30,7 +29,7 @@ class PackageDir(DirectoryBacked):
__child__ = PackageEntry
class pkgmgr(Generator):
- '''This is a generator that handles service assignments'''
+ '''This is a generator that handles package assignments'''
__name__ = 'pkgmgr'
__version__ = '$Id$'
__author__ = 'bcfg-dev@mcs.anl.gov'