Move templating into scripts dir

There's no real need for this to be at the top level.
This commit is contained in:
Richard van der Hoff 2017-11-08 08:37:56 +00:00
parent d9285cf5b5
commit a38d4fc68e
18 changed files with 17 additions and 18 deletions

View file

@ -30,7 +30,7 @@ import yaml
scripts_dir = os.path.dirname(os.path.abspath(__file__))
templating_dir = os.path.join(os.path.dirname(scripts_dir), "templating")
templating_dir = os.path.join(scripts_dir, "templating")
api_dir = os.path.join(os.path.dirname(scripts_dir), "api")
sys.path.insert(0, templating_dir)