Compare commits
No commits in common. "7eb78e5346c5ca13bc1d42dbcc4c82584491b240" and "11553e6f097e925db43a3687c0eb087443b44677" have entirely different histories.
7eb78e5346
...
11553e6f09
|
@ -357,9 +357,9 @@ class CreoleTemplateEngine:
|
||||||
data = str(cheetah_template)
|
data = str(cheetah_template)
|
||||||
except CheetahNotFound as err:
|
except CheetahNotFound as err:
|
||||||
varname = err.args[0][13:-1]
|
varname = err.args[0][13:-1]
|
||||||
raise TemplateError(_(f"Error: unknown variable used in template {source} to {destfilename} : {varname}"))
|
raise TemplateError(_(f"Error: unknown variable used in template {destfilename} : {varname}"))
|
||||||
except Exception as err:
|
except Exception as err:
|
||||||
raise TemplateError(_(f"Error while instantiating template {source} to {destfilename}: {err}"))
|
raise TemplateError(_(f"Error while instantiating template {destfilename}: {err}"))
|
||||||
|
|
||||||
with open(destfilename, 'w') as file_h:
|
with open(destfilename, 'w') as file_h:
|
||||||
file_h.write(data)
|
file_h.write(data)
|
||||||
|
|
Loading…
Reference in New Issue