Modify ↓
Opened 7 months ago
Closed 7 months ago
#10628 closed defect (fixed)
api.py missing import of datetime causes trac-admin upgrade to fail
| Reported by: | Bobby | Owned by: | coling |
|---|---|---|---|
| Priority: | normal | Component: | WorkLogPlugin |
| Severity: | normal | Keywords: | |
| Cc: | rjollos | 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)
Change History (1)
comment:1 Changed 7 months ago by rjollos
- Resolution set to fixed
- Status changed from new to closed
Note: See
TracTickets for help on using
tickets.


(In [12358]) Fixes #10628 : Added missing import of datetime in api.py. Thanks to Bobby for the patch.