Fixed a few typos

This commit is contained in:
Manuel Cortez 2018-08-15 12:29:01 -05:00
parent 95fcbe6ba4
commit dc536c45de

View File

@ -861,7 +861,7 @@ class Controller(object):
return return
tl = buffersController.baseBufferController(self.view.nb, "get_user_timeline", "%s-timeline" % (usr["id_str"],), buff.session, buff.session.db["user_name"], bufferType=None, sound="tweet_timeline.ogg", user_id=usr["id_str"], tweet_mode="extended") tl = buffersController.baseBufferController(self.view.nb, "get_user_timeline", "%s-timeline" % (usr["id_str"],), buff.session, buff.session.db["user_name"], bufferType=None, sound="tweet_timeline.ogg", user_id=usr["id_str"], tweet_mode="extended")
try: try:
tl.start_stream() tl.start_stream(play_sound=False)
except TwythonAuthError: except TwythonAuthError:
commonMessageDialogs.unauthorized() commonMessageDialogs.unauthorized()
return return
@ -881,7 +881,7 @@ class Controller(object):
return return
tl = buffersController.baseBufferController(self.view.nb, "get_favorites", "%s-favorite" % (usr["id_str"],), buff.session, buff.session.db["user_name"], bufferType=None, sound="favourites_timeline_updated.ogg", user_id=usr["id_str"], tweet_mode="extended") tl = buffersController.baseBufferController(self.view.nb, "get_favorites", "%s-favorite" % (usr["id_str"],), buff.session, buff.session.db["user_name"], bufferType=None, sound="favourites_timeline_updated.ogg", user_id=usr["id_str"], tweet_mode="extended")
try: try:
tl.start_stream() tl.start_stream(play_sound=False)
except TwythonAuthError: except TwythonAuthError:
commonMessageDialogs.unauthorized() commonMessageDialogs.unauthorized()
return return
@ -900,7 +900,7 @@ class Controller(object):
return return
tl = buffersController.peopleBufferController(self.view.nb, "get_followers_list", "%s-followers" % (usr["id_str"],), buff.session, buff.session.db["user_name"], sound="new_event.ogg", user_id=usr["id_str"]) tl = buffersController.peopleBufferController(self.view.nb, "get_followers_list", "%s-followers" % (usr["id_str"],), buff.session, buff.session.db["user_name"], sound="new_event.ogg", user_id=usr["id_str"])
try: try:
tl.start_stream() tl.start_stream(play_sound=False)
except TwythonAuthError: except TwythonAuthError:
commonMessageDialogs.unauthorized() commonMessageDialogs.unauthorized()
return return