From: Gordon Hecker Date: Thu, 6 May 2010 10:12:23 +0000 (+0200) Subject: bugfix: fix typo in error messages X-Git-Tag: e2factory-2.3.6~7 X-Git-Url: https://git.e2factory.org/?a=commitdiff_plain;h=f73a87b6aa4d22c7369fe27d071d45daf90b0b2b;p=e2factory.git bugfix: fix typo in error messages Signed-off-by: Gordon Hecker --- diff --git a/local/e2tool.lua b/local/e2tool.lua index 886bb53..6481396 100644 --- a/local/e2tool.lua +++ b/local/e2tool.lua @@ -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