From 5de21adc3bda82279a303a5fc17528befe2a1482 Mon Sep 17 00:00:00 2001 From: Shlomi Fish Date: Sun, 2 Sep 2018 02:42:09 +0300 Subject: [PATCH] fix formatting --- scripts/all_games.py | 16 ++++++++++++---- 1 file changed, 12 insertions(+), 4 deletions(-) diff --git a/scripts/all_games.py b/scripts/all_games.py index 9010dddd..c8a8b896 100755 --- a/scripts/all_games.py +++ b/scripts/all_games.py @@ -151,12 +151,20 @@ def all_games(sort_by='id'): altnames = '
'.join(gi.altnames) fn = os.path.join(rules_dir, rules_fn) if 1 and os.path.exists(fn): - print('''%s -%s -%s%s + print(''' +%s + %s +%s +%s + ''' % (id, fn, name, altnames, gt)) else: - print('''%s%s%s%s + print(''' +%s +%s +%s +%s + ''' % (id, name, altnames, gt)) print('')