rrggbb_to_triplet(): When color doesn't start with `#' raise a

BadColor exception.
This commit is contained in:
Barry Warsaw 1998-10-06 18:10:59 +00:00
parent 5b67839ca3
commit b7b1cf0088
1 changed files with 2 additions and 1 deletions

View File

@ -177,7 +177,8 @@ def rrggbb_to_triplet(color, atoi=string.atoi):
"""Converts a #rrggbb color to the tuple (red, green, blue)."""
rgbtuple = _namedict.get(color)
if rgbtuple is None:
assert color[0] == '#'
if color[0] <> '#':
raise BadColor(color)
red = color[1:3]
green = color[3:5]
blue = color[5:7]