Skip to content

Commit 9b8f038

Browse files
committed
converting dictionary compatible to python3
1 parent bfde5cc commit 9b8f038

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

python/moose/chemUtil/chemConnectUtil.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
colormap_file.close()
2626
ignoreColor= ["mistyrose","antiquewhite","aliceblue","azure","bisque","black","blanchedalmond","blue","cornsilk","darkolivegreen","darkslategray","dimgray","floralwhite","gainsboro","ghostwhite","honeydew","ivory","lavender","lavenderblush","lemonchiffon","lightcyan","lightgoldenrodyellow","lightgray","lightyellow","linen","mediumblue","mintcream","navy","oldlace","papayawhip","saddlebrown","seashell","snow","wheat","white","whitesmoke","aquamarine","lightsalmon","moccasin","limegreen","snow","sienna","beige","dimgrey","lightsage"]
2727
matplotcolor = {}
28-
for name,hexno in matplotlib.colors.cnames.iteritems():
28+
for name,hexno in matplotlib.colors.cnames.items():
2929
matplotcolor[name]=hexno
3030

3131
def getRandColor():

0 commit comments

Comments
 (0)