From f73a87b6aa4d22c7369fe27d071d45daf90b0b2b Mon Sep 17 00:00:00 2001 From: Gordon Hecker Date: Thu, 6 May 2010 12:12:23 +0200 Subject: [PATCH] bugfix: fix typo in error messages Signed-off-by: Gordon Hecker --- local/e2tool.lua | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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 -- 2.39.5