Small fix

This commit is contained in:
Grant Sanderson 2020-02-22 13:20:37 -08:00
parent 7b198545bb
commit f4a33c5bfb

View file

@ -26,7 +26,7 @@ def color_to_rgba(color, alpha=1):
def rgb_to_color(rgb):
try:
return Color(rgb=rgb)
except:
except ValueError:
return Color(WHITE)