md5 modula deprecation fix
This commit is contained in:
parent
cbcfcc5d50
commit
5d09351a19
1 changed files with 3 additions and 3 deletions
|
@ -189,7 +189,7 @@ values to normalized color names. These eight mappings are as follows:
|
|||
|
||||
import math
|
||||
import re
|
||||
import md5
|
||||
from hashlib import md5
|
||||
|
||||
|
||||
def _reversedict(d):
|
||||
|
@ -845,8 +845,8 @@ def whatever_to_rgb(string):
|
|||
try:
|
||||
return hex_to_rgb(string)
|
||||
except ValueError:
|
||||
a = md5.new(string)
|
||||
return hex_to_rgb("#"+a.hexdigest()[:6])
|
||||
#a = md5.new(string)
|
||||
return hex_to_rgb("#"+md5(string).hexdigest()[:6])
|
||||
|
||||
def whatever_to_cairo(string):
|
||||
a = whatever_to_rgb(string)
|
||||
|
|
Loading…
Add table
Reference in a new issue