From 7489a65ee4790a97d3c94cff2e91592ef5629536 Mon Sep 17 00:00:00 2001 From: Oleg Broytman Date: Wed, 23 Dec 2020 01:54:01 +0300 Subject: [PATCH] Fix(m_librarian/web/views/Makefile): `compile` -> `compileall` --- m_librarian/web/views/Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/m_librarian/web/views/Makefile b/m_librarian/web/views/Makefile index 8f6ed13..fde5f08 100644 --- a/m_librarian/web/views/Makefile +++ b/m_librarian/web/views/Makefile @@ -4,8 +4,8 @@ %.py: %.tmpl cheetah compile --nobackup $< - python -m compile $@ - python -O -m compile $@ + python -m compileall $@ + python -O -m compileall $@ templates = $(shell echo *.tmpl) -- 2.39.2