﻿id,summary,reporter,owner,description,type,status,priority,component,severity,resolution,keywords,cc,release
3588,AttributeError: 'int' object has no attribute 'replace',louise@…,bobbysmith007,"TRAC version: 0.11.1 (stable)

Following error message on Python console when i want to modify ""Add Hours to Ticket"" field on tickets created before TimingAndEstimationPlugin installed:
{{{
""AttributeError: 'int' object has no attribute 'replace'""
}}}

I made a quick fix in file ticket_daemon.py, line: 75 like this:
{{{
        #convertfloat = lambda x: float(x.replace(',','.'))                                                                   
        convertfloat = lambda x: float(str(x).replace(',','.')) 
}}}",defect,closed,normal,TimingAndEstimationPlugin,blocker,fixed,AttributeError,,0.11
