From 49c1b9df0bc67a2374ae9cb4cff3fe2820aaa709 Mon Sep 17 00:00:00 2001 From: Sebastian Robinson Date: Wed, 31 Mar 2021 12:20:16 +0100 Subject: [PATCH] Fix torrent version layout issue during prompt_for_update --- PDMameUpdate.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/PDMameUpdate.py b/PDMameUpdate.py index 037671a..c4e6d5a 100755 --- a/PDMameUpdate.py +++ b/PDMameUpdate.py @@ -192,7 +192,7 @@ def prompt_for_update(): data['remote-version'], data.get('transmission-id', 'N/A') ]) - print(tabulate(output, headers=output_header, tablefmt="simple")) + print(tabulate(output, headers=output_header, tablefmt="simple", disable_numparse=True)) print('Should I update the torrents listed above? (y/N)') answer = input() if answer.lower() != 'y':