Warn when the XoColor string is invalid.
This commit is contained in:
parent
8e3e7dd8ad
commit
0159bc7b52
@ -20,6 +20,7 @@ STABLE.
|
|||||||
"""
|
"""
|
||||||
|
|
||||||
import random
|
import random
|
||||||
|
import logging
|
||||||
|
|
||||||
colors = [
|
colors = [
|
||||||
['#B20008', '#FF2B34'], \
|
['#B20008', '#FF2B34'], \
|
||||||
@ -225,7 +226,16 @@ def is_valid(color_string):
|
|||||||
class XoColor:
|
class XoColor:
|
||||||
|
|
||||||
def __init__(self, color_string=None):
|
def __init__(self, color_string=None):
|
||||||
if color_string == None or not is_valid(color_string):
|
if color_string == None:
|
||||||
|
randomize = True
|
||||||
|
elif not is_valid(color_string):
|
||||||
|
logging.error('Color string is not valid: %s, will generate a '
|
||||||
|
'random color pair.', color_string)
|
||||||
|
randomize = True
|
||||||
|
else:
|
||||||
|
randomize = False
|
||||||
|
|
||||||
|
if randomize:
|
||||||
n = int(random.random() * (len(colors) - 1))
|
n = int(random.random() * (len(colors) - 1))
|
||||||
[self.stroke, self.fill] = colors[n]
|
[self.stroke, self.fill] = colors[n]
|
||||||
else:
|
else:
|
||||||
|
Loading…
Reference in New Issue
Block a user