mirror of
https://github.com/MCV-Software/TWBlue.git
synced 2024-11-26 12:53:12 -06:00
View profile: Shows an error if user does not exist. Fixes #114
This commit is contained in:
parent
4d82ecc8f2
commit
a86a6f52d6
@ -1,4 +1,5 @@
|
|||||||
# -*- coding: utf-8 -*-
|
# -*- coding: utf-8 -*-
|
||||||
|
import wx
|
||||||
import webbrowser
|
import webbrowser
|
||||||
import widgetUtils
|
import widgetUtils
|
||||||
import output
|
import output
|
||||||
@ -12,14 +13,19 @@ class profileController(object):
|
|||||||
self.session = session
|
self.session = session
|
||||||
self.user = user
|
self.user = user
|
||||||
if user == None:
|
if user == None:
|
||||||
self.dialog = update_profile.updateProfileDialog()
|
|
||||||
self.get_data(screen_name=self.session.db["user_name"])
|
self.get_data(screen_name=self.session.db["user_name"])
|
||||||
|
self.dialog = update_profile.updateProfileDialog()
|
||||||
self.fill_profile_fields()
|
self.fill_profile_fields()
|
||||||
self.uploaded = False
|
self.uploaded = False
|
||||||
widgetUtils.connect_event(self.dialog.upload_image, widgetUtils.BUTTON_PRESSED, self.upload_image)
|
widgetUtils.connect_event(self.dialog.upload_image, widgetUtils.BUTTON_PRESSED, self.upload_image)
|
||||||
else:
|
else:
|
||||||
|
try:
|
||||||
|
self.get_data(screen_name=self.user)
|
||||||
|
except TwythonError as err:
|
||||||
|
if err.error_code == 404:
|
||||||
|
wx.MessageDialog(None, _(u"That user does not exist"), _(u"Error"), wx.ICON_ERROR).ShowModal()
|
||||||
|
return
|
||||||
self.dialog = show_user.showUserProfile()
|
self.dialog = show_user.showUserProfile()
|
||||||
self.get_data(screen_name=self.user)
|
|
||||||
string = self.get_user_info()
|
string = self.get_user_info()
|
||||||
self.dialog.set("text", string)
|
self.dialog.set("text", string)
|
||||||
self.dialog.set_title(_(u"Information for %s") % (self.data["screen_name"]))
|
self.dialog.set_title(_(u"Information for %s") % (self.data["screen_name"]))
|
||||||
|
Loading…
Reference in New Issue
Block a user