summaryrefslogtreecommitdiffstats
path: root/install/tools/ipa-replica-prepare
diff options
context:
space:
mode:
authorMartin Nagy <mnagy@redhat.com>2009-11-23 08:42:30 +0100
committerMartin Nagy <mnagy@redhat.com>2009-12-02 13:07:00 +0100
commit377907e2211875250e6af7fcb65d0548702c3c3d (patch)
tree14820bf4aec1b8e44fa028f3f599b32a7c154391 /install/tools/ipa-replica-prepare
parentf3bd9bfb595cc71184d0aa760b28670e336142ab (diff)
downloadfreeipa-377907e2211875250e6af7fcb65d0548702c3c3d.tar.gz
freeipa-377907e2211875250e6af7fcb65d0548702c3c3d.tar.xz
freeipa-377907e2211875250e6af7fcb65d0548702c3c3d.zip
Remove unnecessary "error: " prefixes
The parser.error() method prepends the "error: " prefix itself. Adding it to the error string is not necessary and doesn't look good.
Diffstat (limited to 'install/tools/ipa-replica-prepare')
-rwxr-xr-xinstall/tools/ipa-replica-prepare2
1 files changed, 1 insertions, 1 deletions
diff --git a/install/tools/ipa-replica-prepare b/install/tools/ipa-replica-prepare
index 3dc0ccce5..bc86a41a3 100755
--- a/install/tools/ipa-replica-prepare
+++ b/install/tools/ipa-replica-prepare
@@ -59,7 +59,7 @@ def parse_options():
pkcs12 = [options.dirsrv_pkcs12, options.http_pkcs12, options.dirsrv_pin, options.http_pin]
cnt = pkcs12.count(None)
if cnt > 0 and cnt < 4:
- parser.error("error: All PKCS#12 options are required if any are used.")
+ parser.error("All PKCS#12 options are required if any are used.")
if len(args) != 1:
parser.error("must provide the fully-qualified name of the replica")