diff options
author | Narayan Desai <desai@mcs.anl.gov> | 2008-08-21 20:29:24 +0000 |
---|---|---|
committer | Narayan Desai <desai@mcs.anl.gov> | 2008-08-21 20:29:24 +0000 |
commit | 368713348404468a62ad14f0e58339c6a5255d8a (patch) | |
tree | afba8bfcfd714ebef145b0aa83d6d0cdfc87c97f /src/lib | |
parent | 640822c1e1336dfb66097ff6685cccaf2abedb13 (diff) | |
download | bcfg2-368713348404468a62ad14f0e58339c6a5255d8a.tar.gz bcfg2-368713348404468a62ad14f0e58339c6a5255d8a.tar.bz2 bcfg2-368713348404468a62ad14f0e58339c6a5255d8a.zip |
Fix two typos in error messages
git-svn-id: https://svn.mcs.anl.gov/repos/bcfg/trunk/bcfg2@4886 ce84e21b-d406-0410-9b95-82705330c041
Diffstat (limited to 'src/lib')
-rw-r--r-- | src/lib/Client/Tools/__init__.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/Client/Tools/__init__.py b/src/lib/Client/Tools/__init__.py index cda5d83cc..bc0c8ec5c 100644 --- a/src/lib/Client/Tools/__init__.py +++ b/src/lib/Client/Tools/__init__.py @@ -165,7 +165,7 @@ class Tool: if missing: self.logger.error("Incomplete information for entry %s:%s; cannot verify" \ % (entry.tag, entry.get('name'))) - self.logger.error("\t... due to absense of %s attribute(s)" % \ + self.logger.error("\t... due to absence of %s attribute(s)" % \ (":".join(missing))) try: self.gatherCurrentData(entry) @@ -189,7 +189,7 @@ class Tool: if missing: self.logger.error("Incomplete information for entry %s:%s; cannot install" \ % (entry.tag, entry.get('name'))) - self.logger.error("\t... due to absense of %s attribute" % \ + self.logger.error("\t... due to absence of %s attribute" % \ (":".join(missing))) return False return True |