From 230eafed9aefda8688c8b9269e600b7289326a52 Mon Sep 17 00:00:00 2001 From: Holden Rohrer Date: Fri, 7 Feb 2020 00:14:10 -0500 Subject: cleaned up python directory structure --- data/maketables.sh | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'data/maketables.sh') diff --git a/data/maketables.sh b/data/maketables.sh index 0f043ad..dffc937 100755 --- a/data/maketables.sh +++ b/data/maketables.sh @@ -2,8 +2,7 @@ export TABLE=`mktemp` export DEATHTABLE=`mktemp` -echo $TABLE -python data.py deathtable > $DEATHTABLE -python data.py table > $TABLE +python python/deathtable.py > $DEATHTABLE +python python/table.py > $TABLE sed -e "/%%DEATHTABLE%%/{r $DEATHTABLE" -e "d}" -e "/%%MAINTABLE%%/{r $TABLE" -e "d}" data/tables.tex rm $DEATHTABLE $TABLE -- cgit