From 9f6a78c7eae51c9f3063f719df5d4368613dc0c8 Mon Sep 17 00:00:00 2001 From: Tibor Bizjak Date: Wed, 11 Sep 2019 01:14:34 +0200 Subject: [PATCH] Renamed template.html to template.tpl --- main.py | 2 +- template.html => template.tpl | 0 2 files changed, 1 insertion(+), 1 deletion(-) rename template.html => template.tpl (100%) diff --git a/main.py b/main.py index 0b95d32..59df072 100644 --- a/main.py +++ b/main.py @@ -3,7 +3,7 @@ from chess import Game KEY = "abcdefgh" -TEMPLATE = "template.html" +TEMPLATE = "template.tpl" games = dict() def is_submitted(name): diff --git a/template.html b/template.tpl similarity index 100% rename from template.html rename to template.tpl