summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
Diffstat (limited to 'tools')
-rw-r--r--tools/gencards.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/tools/gencards.py b/tools/gencards.py
index d4461ff..87fd401 100644
--- a/tools/gencards.py
+++ b/tools/gencards.py
@@ -35,6 +35,8 @@ def flush():
cards.append(output)
+ # print("CARD {} - {}\n# {}\n".format(output['id'], output['title'], output['text']))
+
# Reset card attributes for the next entry
card['title'] = ""
card['text'] = []
@@ -45,6 +47,7 @@ def read_cards(_card_type):
card['type'] = _card_type
card['era'] = ""
filename = file_format.format(_card_type)
+ # print("# {} Cards\n".format(_card_type.title()))
with open(filename) as fp:
for line in fp: