diff options
Diffstat (limited to 'templating')
-rwxr-xr-x | templating/templating.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/templating/templating.py b/templating/templating.py index 55bb3f5..1eff4a3 100755 --- a/templating/templating.py +++ b/templating/templating.py @@ -71,7 +71,7 @@ def root_get(path): except requests.exceptions.HTTPError as err: return f'HTTP error from gondul: {err}', 500 except Exception as err: - return f'Uncaight error: {err}', 500 + return f'Uncaught error: {err}', 500 return body, 200 |