Subject: | DateTime not loaded, but used in display_tasks() |
in sub display_tasks{ }, you use DateTime->now, but never actually load
DateTime via 'use DateTime;'
This makes my poor script die, unless I load DateTime in the script
itself (which I did, and which is a simple workaround)
Please either use DateTime in the beginning of the module, or load it
optionally in display_tasks via 'require DateTime;'
Oh, and thanks for the nice module, besides this small glitch it works
like a charm (though currently I'm only using it to add tasks via IRC)