gizeh icon indicating copy to clipboard operation
gizeh copied to clipboard

gizeh.tools.htmlcolor_to_rgb - wrong indexing

Open cdar opened this issue 10 years ago • 0 comments

Current: return [1.0*int(n,16)/255 for n in (string[:2], string[2:4], string[4:])]

Correct: return [1.0*int(n,16)/255 for n in (string[1:3], string[3:5], string[5:7])]

cdar avatar Jul 21 '15 14:07 cdar