Skip to content

Instantly share code, notes, and snippets.

View wowkalucky's full-sized avatar

Volodymyr Bergman wowkalucky

  • RaccoonGang
  • Ukraine.Kharkiv
View GitHub Profile
@wowkalucky
wowkalucky / mako-undefined-snippet.py
Last active April 14, 2022 16:20
Mako Undefined NameException debugging
# https://stackoverflow.com/a/536087/1587104
try:
return render_to_response("<problem-template.html>", context)
except:
from mako import exceptions
print('*'*99)
print(exceptions.text_error_template().render())