Changes between Initial Version and Version 1 of Ticket #13732, comment 1
- Timestamp:
- Feb 16, 2021, 9:02:24 PM (2 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #13732, comment 1
initial v1 1 1 Oops, all reports related to TimingAndEstimationPlugin fail. 2 This may be fixed modifying **./timingandestimationplugin/reports.py**3 all rows containing **description AS _description_** need to prepend **t.**4 so update rows 2 This may be fixed modifying `./timingandestimationplugin/reports.py` 3 all rows containing `description AS _description_` need to prepend `t.` 4 so update rows: 5 5 - 171 6 6 - 259 … … 12 12 to be seen as: 13 13 14 **t.description AS _description_, -- ## Uses a full row** 15 16 ---- 14 {{{ 15 t.description AS _description_, -- ## Uses a full row 16 }}} 17 17 18 18 And again, please, note that this is a quick&dirty turnaround, not **THE** solution.