Modify ↓
Opened 17 years ago
Closed 3 years ago
#2216 closed defect (wontfix)
[patch included] Plugin fails to update mood entry
Reported by: | dexen deVries | Owned by: | Brett Smith |
---|---|---|---|
Priority: | normal | Component: | NikoNikoPlugin |
Severity: | normal | Keywords: | |
Cc: | Trac Release: | 0.10 |
Description
with Trac 10.4 and decent SQLite. It seems that string in SQLite (in my configuration) is stored as 'DD-MM-YYYY', while the plugin uses 'DD/MM/YYYY' format, thus SQL query doesn't find existing row -- and fails upon issuing INSERT (rather than UPDATE, which would be issued should the plugin find previous entry). The difference in formatting of date field may be due to regionall setting (LOCALE).
I kinda fixed it by commenting out:
#date_time = now.strftime("%d/%m/%Y");
and adding above it following code:
date_time = str(now.date())
(I'm sorry it's not a real patch, I'm in hurry now >_>;; )
Attachments (0)
Change History (2)
comment:1 Changed 17 years ago by
Status: | new → assigned |
---|
comment:2 Changed 3 years ago by
Resolution: | → wontfix |
---|---|
Status: | assigned → closed |
Note: See
TracTickets for help on using
tickets.
Deprecated and removed.