diff --git a/tabellio/webviews/deputy.py b/tabellio/webviews/deputy.py index 1aea613..d1835d0 100644 --- a/tabellio/webviews/deputy.py +++ b/tabellio/webviews/deputy.py @@ -241,7 +241,7 @@ class GenderStatsView(BrowserView): baseline = 320/2-30 else: baseline = 320/2+30 - percent = int(round(100*sum(group.to_list())/plot.total)) + percent = int(round(100.*sum(group.to_list())/plot.total)) plot.context.set_source_rgba(*plot.series_colors[number][:4]) plot.context.rectangle(410, baseline-25, 40, 40) plot.context.fill()