From: Oleg Broytman Date: Fri, 15 Jun 2018 11:55:47 +0000 (+0300) Subject: Fix(web): Replace compyle with `python -m compile` X-Git-Tag: 0.1.5~7 X-Git-Url: https://git.phdru.name/?p=m_librarian.git;a=commitdiff_plain;h=375be2b3b198b437d5d45d90493025046305985b Fix(web): Replace compyle with `python -m compile` --- diff --git a/m_librarian/web/views/Makefile b/m_librarian/web/views/Makefile index fc8b7be..8f6ed13 100644 --- a/m_librarian/web/views/Makefile +++ b/m_librarian/web/views/Makefile @@ -3,7 +3,9 @@ %.py: %.tmpl - cheetah compile --nobackup $< && compyle $@ + cheetah compile --nobackup $< + python -m compile $@ + python -O -m compile $@ templates = $(shell echo *.tmpl)