Skip to content

Commit

Permalink
core: str not needed (if you need them, fix your code)
Browse files Browse the repository at this point in the history
  • Loading branch information
borisfaure committed Jun 7, 2010
1 parent 9fd3a69 commit 84fdf18
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions amsn2/core/personalinfo_manager.py
Expand Up @@ -39,11 +39,11 @@ def set_account(self, amsn_account):
""" Actions from ourselves """
def _on_nick_changed(self, new_nick):
# TODO: parsing
self._papyon_profile.display_name = str(new_nick)
self._papyon_profile.display_name = new_nick

def _on_PSM_changed(self, new_psm):
# TODO: parsing
self._papyon_profile.personal_message = str(new_psm)
self._papyon_profile.personal_message = new_psm

def _on_presence_changed(self, new_presence):
# TODO: manage custom presence
Expand Down

0 comments on commit 84fdf18

Please sign in to comment.