On Thu, 2005-06-23 at 03:10 +0000, Ben Duncan wrote: > I've also modified all the scripts that use the module to call it > like: > > use Atmail::Config; > > to: > > require Atmail::Config; Atmail::Config->import();
I don't think reloading will work well with exports. It seems likely to screw up the subroutine aliasing. Can you change from exporting to using an accessor method in your config class? - Perrin
