From 2e4f870b82fbbe14861ad6bbb8e14b6375c250b4 Mon Sep 17 00:00:00 2001 From: noah morrison Date: Mon, 3 Nov 2014 16:57:20 -0500 Subject: [PATCH] Rename project to entei --- README.md | 2 +- chevron.py => entei.py | 0 test_spec.py | 2 +- 3 files changed, 2 insertions(+), 2 deletions(-) rename chevron.py => entei.py (100%) diff --git a/README.md b/README.md index df6226a..efdabd2 100644 --- a/README.md +++ b/README.md @@ -2,7 +2,7 @@ A python3 implementation of the [mustache templating language](http://mustache.g Current commandline usage: ``` - ./chevron.py [data file] [template file] + ./entei.py [data file] [template file] ``` TODO diff --git a/chevron.py b/entei.py similarity index 100% rename from chevron.py rename to entei.py diff --git a/test_spec.py b/test_spec.py index f28ecbb..f596788 100755 --- a/test_spec.py +++ b/test_spec.py @@ -3,7 +3,7 @@ import unittest import os import json -from chevron import render +from entei import render SPECS_PATH = os.path.join('spec', 'specs') SPECS = [path for path in os.listdir(SPECS_PATH) if path.endswith('.json')] -- 2.47.3