|
From: Martin S. <sc...@ms...> - 2007-02-13 14:42:23
|
John Hunter wrote:
> Thanks for the suggestion -- I did this automagically with
>
> # add british equivs
> for k, v in cnames.items():
> if k.find('gray')>=0:
> k = k.replace('gray', 'grey')
> cnames[k] = v
Just noticed that 'lightgrey' is still in the cnames dict, which means
that 'lightgray' is an invalid name. Here's the patch.
Cheers,
Martin
|