Signed-off-by: Jan Pokorný <jpokorny(a)redhat.com>
---
bin/rhts-abort | 2 +-
bin/rhts-recipe-sync-block | 6 +++---
bin/rhts-recipe-sync-set | 8 ++++----
bin/rhts-submit-log | 4 ++--
bin/rhts-sync-block | 8 ++++----
bin/rhts-sync-set | 10 +++++-----
6 files changed, 19 insertions(+), 19 deletions(-)
diff --git a/bin/rhts-abort b/bin/rhts-abort
index 8c3f44b..cea6efa 100755
--- a/bin/rhts-abort
+++ b/bin/rhts-abort
@@ -107,7 +107,7 @@ def main():
recipeid = val
if not type:
- print "You must sepcify a type with the -t flag"
+ print "You must specify a type with the -t flag"
sys.exit(1)
if not result_server:
diff --git a/bin/rhts-recipe-sync-block b/bin/rhts-recipe-sync-block
index 175b625..2d882a4 100755
--- a/bin/rhts-recipe-sync-block
+++ b/bin/rhts-recipe-sync-block
@@ -49,10 +49,10 @@ def sync_block(states,machines,any_machine,timeout):
result_server = "http://%s/cgi-bin/rhts/scheduler_xmlrpc.cgi" % result_server
if not result_server:
- raise Exception, "You must sepcify the result server with the -R switch"
+ raise Exception, "You must specify the result server with the -R switch"
if not recipesetid:
- raise Exception, "You must sepcify the recipesetid with the -r switch"
+ raise Exception, "You must specify the recipesetid with the -r switch"
client = xmlrpclib.Server(result_server)
curr_states = []
@@ -125,7 +125,7 @@ def main():
return -1
if not states:
- raise Exception, "You must sepcify a state with the -s switch"
+ raise Exception, "You must specify a state with the -s switch"
if not result_server:
sys.stderr.write("result_server not set, assuming developer mode.\n")
diff --git a/bin/rhts-recipe-sync-set b/bin/rhts-recipe-sync-set
index 406cc00..2662db6 100755
--- a/bin/rhts-recipe-sync-set
+++ b/bin/rhts-recipe-sync-set
@@ -40,15 +40,15 @@ def sync_set(state):
result_server = "http://%s/cgi-bin/rhts/scheduler_xmlrpc.cgi" % result_server
if not result_server:
- print "You must sepcify the result server with the -R switch"
+ print "You must specify the result server with the -R switch"
sys.exit(1)
if not hostname:
- print "You must sepcify the hostname with the -m switch"
+ print "You must specify the hostname with the -m switch"
sys.exit(1)
if not recipesetid:
- print "You must sepcify the recipesetid with the -r switch"
+ print "You must specify the recipesetid with the -r switch"
sys.exit(1)
client = xmlrpclib.Server(result_server)
@@ -97,7 +97,7 @@ def main():
recipesetid = val
if not state:
- print "You must sepcify a state with the -s switch"
+ print "You must specify a state with the -s switch"
sys.exit(1)
if not result_server:
diff --git a/bin/rhts-submit-log b/bin/rhts-submit-log
index 5b9f2bd..a2014dc 100755
--- a/bin/rhts-submit-log
+++ b/bin/rhts-submit-log
@@ -73,7 +73,7 @@ def main():
assert start >= 0, "start must be greater or equall zero."
if not logname:
- print "You must sepcify a logfile with the -l switch"
+ print "You must specify a logfile with the -l switch"
sys.exit(1)
if not result_server:
@@ -82,7 +82,7 @@ def main():
sys.exit(0)
else:
if not recipetestid:
- print "You must sepcify a recipetestid with the -T switch"
+ print "You must specify a recipetestid with the -T switch"
sys.exit(1)
report_log(recipetestid, logname, start=start)
diff --git a/bin/rhts-sync-block b/bin/rhts-sync-block
index c304ca3..95b494a 100755
--- a/bin/rhts-sync-block
+++ b/bin/rhts-sync-block
@@ -55,13 +55,13 @@ def sync_block(states,machines,any_machine,timeout):
result_server = "http://%s/cgi-bin/rhts/scheduler_xmlrpc.cgi" % result_server
if not result_server:
- raise Exception, "You must sepcify the result server with the -R switch"
+ raise Exception, "You must specify the result server with the -R switch"
if not recipesetid:
- raise Exception, "You must sepcify the recipesetid with the -r switch"
+ raise Exception, "You must specify the recipesetid with the -r switch"
if not testorder:
- raise Exception, "You must sepcify the testorder with the -t switch"
+ raise Exception, "You must specify the testorder with the -t switch"
client = xmlrpclib.Server(result_server)
curr_states = []
@@ -138,7 +138,7 @@ def main():
return -1
if not states:
- raise Exception, "You must sepcify a state with the -s switch"
+ raise Exception, "You must specify a state with the -s switch"
if not result_server:
sys.stderr.write("result_server not set, assuming developer mode.\n")
diff --git a/bin/rhts-sync-set b/bin/rhts-sync-set
index 6a5351b..76b9814 100755
--- a/bin/rhts-sync-set
+++ b/bin/rhts-sync-set
@@ -41,19 +41,19 @@ def sync_set(state):
result_server = "http://%s/cgi-bin/rhts/scheduler_xmlrpc.cgi" % result_server
if not result_server:
- print "You must sepcify the result server with the -R switch"
+ print "You must specify the result server with the -R switch"
sys.exit(1)
if not hostname:
- print "You must sepcify the hostname with the -m switch"
+ print "You must specify the hostname with the -m switch"
sys.exit(1)
if not recipesetid:
- print "You must sepcify the recipesetid with the -r switch"
+ print "You must specify the recipesetid with the -r switch"
sys.exit(1)
if not testorder:
- print "You must sepcify the testorder with the -t switch"
+ print "You must specify the testorder with the -t switch"
sys.exit(1)
client = xmlrpclib.Server(result_server)
while True:
@@ -105,7 +105,7 @@ def main():
testorder = val
if not state:
- print "You must sepcify a state with the -s switch"
+ print "You must specify a state with the -s switch"
sys.exit(1)
if not result_server:
--
2.4.2