Changes between Initial Version and Version 1 of Ticket #13732, comment 1


Ignore:
Timestamp:
Feb 16, 2021, 9:02:24 PM (3 years ago)
Author:
Ryan J Ollos
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #13732, comment 1

    initial v1  
    11Oops, 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 
     2This may be fixed modifying `./timingandestimationplugin/reports.py`
     3all rows containing `description AS _description_` need to prepend `t.`
     4so update rows:
    55 - 171
    66 - 259
     
    1212to be seen as:
    1313
    14 **t.description AS _description_,                    -- ## Uses a full row**
    15 
    16 ----
     14{{{
     15t.description AS _description_,                    -- ## Uses a full row
     16}}}
    1717
    1818And again, please, note that this is a quick&dirty turnaround, not **THE** solution.