Fix --dryrun output

This commit is contained in:
Kristóf Tóth 2018-09-09 00:34:56 +02:00
parent 1c438931ff
commit 716e198b4b
1 changed files with 4 additions and 1 deletions

5
cli.py
View File

@ -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)