summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorNarayan Desai <desai@mcs.anl.gov>2005-09-16 15:52:56 +0000
committerNarayan Desai <desai@mcs.anl.gov>2005-09-16 15:52:56 +0000
commitcafc1e50c338540cdfbd158a4a2287ee6f8f8c12 (patch)
treee872b2d93c6e99c709f24e964ba6ca9c1f35fe3f /src
parent87b80c4538d05aa357983e31dcbb54ac46e89cbb (diff)
downloadbcfg2-cafc1e50c338540cdfbd158a4a2287ee6f8f8c12.tar.gz
bcfg2-cafc1e50c338540cdfbd158a4a2287ee6f8f8c12.tar.bz2
bcfg2-cafc1e50c338540cdfbd158a4a2287ee6f8f8c12.zip
typo
(Logical change 1.316) git-svn-id: https://svn.mcs.anl.gov/repos/bcfg/trunk/bcfg2@1287 ce84e21b-d406-0410-9b95-82705330c041
Diffstat (limited to 'src')
-rw-r--r--src/lib/Client/Debian.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/Client/Debian.py b/src/lib/Client/Debian.py
index 5dab36c95..2bff62716 100644
--- a/src/lib/Client/Debian.py
+++ b/src/lib/Client/Debian.py
@@ -32,7 +32,7 @@ class Debian(Toolset):
self.installed = {}
self.pkgwork = {'add':[], 'update':[], 'remove':[]}
self.extra_services = []
- for pkg in [cpkg for cpkg in self.cfg.finall(".//Package") if not cpkg.attrib.has_key('type')]:
+ for pkg in [cpkg for cpkg in self.cfg.findall(".//Package") if not cpkg.attrib.has_key('type')]:
pkg.set('type', 'deb')
self.Refresh()