Fix torrent version layout issue during prompt_for_update

This commit is contained in:
Sebastian Robinson
2021-03-31 12:20:16 +01:00
parent f6d46bb6cf
commit 49c1b9df0b

View File

@ -192,7 +192,7 @@ def prompt_for_update():
data['remote-version'], data['remote-version'],
data.get('transmission-id', 'N/A') 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)') print('Should I update the torrents listed above? (y/N)')
answer = input() answer = input()
if answer.lower() != 'y': if answer.lower() != 'y':