Skip to content

Commit

Permalink
Fix error in printing of a log message
Browse files Browse the repository at this point in the history
  • Loading branch information
antlu committed Sep 25, 2019
1 parent d4f5d1b commit 985f926
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion gtao_friends_cleaner/__main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -172,5 +172,5 @@
else:
break

logging.info(f'Removed {", ".join([friend[name] for friend in friends_to_remove])}')
logging.info(f"Removed {', '.join([friend['name'] for friend in friends_to_remove])}")
input("Done.")

0 comments on commit 985f926

Please sign in to comment.