Minor style changes.

This commit is contained in:
Michael Lazar
2015-10-14 23:37:16 -07:00
parent 497c7741b3
commit c4bd8aa3c3
3 changed files with 9 additions and 11 deletions

View File

@@ -106,7 +106,7 @@ class OAuthTool(object):
except (praw.errors.OAuthAppRequired, praw.errors.OAuthInvalidToken):
show_notification(self.stdscr, ['Invalid OAuth data'])
else:
message = ['Welcome, {}!'.format(self.reddit.user.name)]
message = ['Welcome {}!'.format(self.reddit.user.name)]
show_notification(self.stdscr, message)
def clear_oauth_data(self):