diff --git a/pym/cl_apply_template.py b/pym/cl_apply_template.py index 06893a7..960767f 100644 --- a/pym/cl_apply_template.py +++ b/pym/cl_apply_template.py @@ -110,8 +110,11 @@ subdirectories %s")%', '.join(dirsTemplates)) for errMess in clTempl.getError().splitlines(): self.printERROR(errMess) return False - self.printWARNING(_("Package %s has changed files")%calcPkg+":") - self.printWARNING(" "*5 + nameFile) + if nameFile is True: + self.printWARNING(_("Template %s not applied")%cltTemplatePath) + else: + self.printWARNING(_("Package %s has changed files")%calcPkg+":") + self.printWARNING(" "*5 + nameFile) return True def printVars(self, opts=["all"]):