Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--sugar/graphics/xocolor.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/sugar/graphics/xocolor.py b/sugar/graphics/xocolor.py
index b2da8e9..d5e906f 100644
--- a/sugar/graphics/xocolor.py
+++ b/sugar/graphics/xocolor.py
@@ -17,7 +17,7 @@
import random
-_colors = [
+colors = [
['#B20008', '#FF2B34'], \
['#FF2B34', '#B20008'], \
['#E6000A', '#FF2B34'], \
@@ -218,8 +218,8 @@ def is_valid(color_string):
class XoColor:
def __init__(self, color_string=None):
if color_string == None or not is_valid(color_string):
- n = int(random.random() * (len(_colors) - 1))
- [self.stroke, self.fill] = _colors[n]
+ n = int(random.random() * (len(colors) - 1))
+ [self.stroke, self.fill] = colors[n]
else:
[self.stroke, self.fill] = _parse_string(color_string)
@@ -244,7 +244,7 @@ if __name__ == "__main__":
f = open(sys.argv[1], 'r')
- print '_colors = ['
+ print 'colors = ['
for line in f.readlines():
match = re.match(r'fill: ([A-Z0-9]*) stroke: ([A-Z0-9]*)', line)