diff --git a/gramps/plugins/drawreport/timeline.py b/gramps/plugins/drawreport/timeline.py index 4585cd356..50057ce81 100644 --- a/gramps/plugins/drawreport/timeline.py +++ b/gramps/plugins/drawreport/timeline.py @@ -297,7 +297,7 @@ class TimeLine(Report): delta = (stop_pos - start_pos)/ 5 for val in range(0,6): xpos = start_pos+(val*delta) - year_str = str(year_low + (incr*val)) + year_str = str(int(year_low + (incr*val))) self.doc.center_text('TLG-label', year_str, xpos, label_y) def draw_no_date_heading(self):