|
From: John H. <jdh...@ac...> - 2004-04-24 13:49:14
|
>>>>> "H=E9ctor" =3D=3D H=E9ctor Villafuerte D <hec...@te...=
m.gt> writes:
H=E9ctor> 720, in __init__ MultipleLocator.__init__(self,
H=E9ctor> base*SEC_PER_MIN) NameError: global name 'SEC_PER_MIN' is
H=E9ctor> not defined
This is a bug in ticker that will be fixed in the next bugfix
release. If you want to fix it yourself now, edit
matplotlib/ticker.py and add SEC_PER_MIN to the list of things
imported from the dates module. Ie,
from dates import EpochConverter, SEC_PER_HOUR, SEC_PER_DAY, SEC_PER_WEEK=
, \
SEC_PER_MIN
|