Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/sugar/profile.py
diff options
context:
space:
mode:
authorTomeu Vizoso <tomeu@tomeuvizoso.net>2007-02-23 12:09:33 (GMT)
committer Tomeu Vizoso <tomeu@tomeuvizoso.net>2007-02-23 12:09:33 (GMT)
commitcb0d75eb59da59ff505794d6a1bddb484b4b2e88 (patch)
treef811cc494c80532e37616d58e158bfecdfb5f04b /sugar/profile.py
parentb8792c5c32561ca4d617e4e359d031f0f6128af0 (diff)
Rename IconColor to XoColor.
Diffstat (limited to 'sugar/profile.py')
-rw-r--r--sugar/profile.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/sugar/profile.py b/sugar/profile.py
index 65f8582..cb1309b 100644
--- a/sugar/profile.py
+++ b/sugar/profile.py
@@ -18,7 +18,7 @@ import os
from ConfigParser import ConfigParser
from sugar import env
-from sugar.graphics.iconcolor import IconColor
+from sugar.graphics.xocolor import XoColor
class _Profile(object):
def __init__(self):
@@ -39,7 +39,7 @@ class _Profile(object):
self.name = cp.get('Buddy', 'NickName')
if cp.has_option('Buddy', 'Color'):
- self.color = IconColor(cp.get('Buddy', 'Color'))
+ self.color = XoColor(cp.get('Buddy', 'Color'))
if cp.has_option('Buddy', 'PublicKey'):
self.pubkey = cp.get('Buddy', 'PublicKey')