]> git.e2factory.org Git - e2factory.git/commitdiff
bugfix: fix typo in error messages
authorGordon Hecker <gh@emlix.com>
Thu, 6 May 2010 10:12:23 +0000 (12:12 +0200)
committerGordon Hecker <gh@emlix.com>
Mon, 17 May 2010 09:32:33 +0000 (11:32 +0200)
Signed-off-by: Gordon Hecker <gh@emlix.com>
local/e2tool.lua

index 886bb53957977b1b7f57504190a8831f2c18d878..648139657289420dd4f412073ae2a5b3f64d5a69 100644 (file)
@@ -576,17 +576,17 @@ The newest configuration syntax supported by the tools is %s.
   if not info.project.default_results then
     e2lib.warnf("WDEFAULT", "in project configuration:")
     e2lib.warnf("WDEFAULT",
-               "default_results ist not set. Defaulting to empty list.")
+               "default_results is not set. Defaulting to empty list.")
     info.project.default_results = {}
   end
   rc, re = listofstrings(info.project.deploy_results, true, true)
   if not rc then
-    e:append("deploy_results ist not a valid list of strings")
+    e:append("deploy_results is not a valid list of strings")
     e:cat(re)
   end
   rc, re = listofstrings(info.project.default_results, true, false)
   if not rc then
-    e:append("default_results ist not a valid list of strings")
+    e:append("default_results is not a valid list of strings")
     e:cat(re)
   end
   if not info.project.chroot_arch then