From 716e198b4b53eed22e8e8d68db7f8e087735eba4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Krist=C3=B3f=20T=C3=B3th?= Date: Sun, 9 Sep 2018 00:34:56 +0200 Subject: [PATCH] Fix --dryrun output --- cli.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/cli.py b/cli.py index 5f7fba0..923b8dd 100755 --- a/cli.py +++ b/cli.py @@ -65,7 +65,10 @@ if __name__ == '__main__': # define operations def listchanges(before, after): - print(f'{after}{" "*(60-len(after))} --> {before}') + print( + f'⤺ {before}\n' + f'⤻ {after}\n' + ) def listfunky(before, _): print(before)