Add public key item to sugar profile
This commit is contained in:
parent
4b7fabc33e
commit
d091c60275
@ -24,6 +24,7 @@ class _Profile(object):
|
|||||||
def __init__(self):
|
def __init__(self):
|
||||||
self.name = None
|
self.name = None
|
||||||
self.color = None
|
self.color = None
|
||||||
|
self.pubkey = None
|
||||||
self._load()
|
self._load()
|
||||||
|
|
||||||
def update(self):
|
def update(self):
|
||||||
@ -40,6 +41,9 @@ class _Profile(object):
|
|||||||
if cp.has_option('Buddy', 'Color'):
|
if cp.has_option('Buddy', 'Color'):
|
||||||
self.color = IconColor(cp.get('Buddy', 'Color'))
|
self.color = IconColor(cp.get('Buddy', 'Color'))
|
||||||
|
|
||||||
|
if cp.has_option('Buddy', 'PublicKey'):
|
||||||
|
self.pubkey = cp.get('Buddy', 'PublicKey')
|
||||||
|
|
||||||
del cp
|
del cp
|
||||||
|
|
||||||
def get_nick_name():
|
def get_nick_name():
|
||||||
@ -48,6 +52,9 @@ def get_nick_name():
|
|||||||
def get_color():
|
def get_color():
|
||||||
return _profile.color
|
return _profile.color
|
||||||
|
|
||||||
|
def get_pubkey():
|
||||||
|
return _profile.pubkey
|
||||||
|
|
||||||
def update():
|
def update():
|
||||||
_profile.update()
|
_profile.update()
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user