Modify ↓
Opened 12 years ago
Closed 12 years ago
#10628 closed defect (fixed)
api.py missing import of datetime causes trac-admin upgrade to fail
Reported by: | Bobby | Owned by: | Colin Guthrie |
---|---|---|---|
Priority: | normal | Component: | WorkLogPlugin |
Severity: | normal | Keywords: | |
Cc: | Ryan J Ollos | Trac Release: | 1.0 |
Description
Running the upgrade with trac-admin after adding the plugin kept failing, and in trac.log it said the api portion of the plugin had undefined datetime. I noticed all .py of the plugin were importing datetime except api.py. Adding to api.py
from datetime import datetime
made the upgrade work and now I can use the plugin. I'm not sure why no one else has reported this error, and I doubt there's anything unusual in how my system is configured.
Attachments (0)
Note: See
TracTickets for help on using
tickets.
(In [12358]) Fixes #10628 : Added missing import of
datetime
inapi.py
. Thanks to Bobby for the patch.