summaryrefslogtreecommitdiffstats
path: root/src/lib/Bcfg2/Client/Client.py
diff options
context:
space:
mode:
authorChris St. Pierre <chris.a.st.pierre@gmail.com>2012-11-14 10:25:51 -0500
committerChris St. Pierre <chris.a.st.pierre@gmail.com>2012-11-14 11:57:06 -0500
commit2fecc7a73e658f3977e0351f900694a68f404db3 (patch)
tree81f63e6e4b560e092d64ea831c1fe382e0a6303f /src/lib/Bcfg2/Client/Client.py
parent3e98f08850fd3b25357e1d14e5b4c2d5f6ebc34e (diff)
downloadbcfg2-2fecc7a73e658f3977e0351f900694a68f404db3.tar.gz
bcfg2-2fecc7a73e658f3977e0351f900694a68f404db3.tar.bz2
bcfg2-2fecc7a73e658f3977e0351f900694a68f404db3.zip
fixed typos in error message
Diffstat (limited to 'src/lib/Bcfg2/Client/Client.py')
-rw-r--r--src/lib/Bcfg2/Client/Client.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/lib/Bcfg2/Client/Client.py b/src/lib/Bcfg2/Client/Client.py
index 636aa5177..f197a9074 100644
--- a/src/lib/Bcfg2/Client/Client.py
+++ b/src/lib/Bcfg2/Client/Client.py
@@ -293,9 +293,9 @@ class Client(object):
fcntl.LOCK_EX | fcntl.LOCK_NB)
except IOError:
# otherwise exit and give a warning to the user
- self.fatal_error("An other instance of Bcfg2 is running. "
- "If you what to bypass the check, run "
- "with %s option" %
+ self.fatal_error("Another instance of Bcfg2 is running. "
+ "If you want to bypass the check, run "
+ "with the %s option" %
Bcfg2.Options.OMIT_LOCK_CHECK.cmd)
except SystemExit:
raise