Subject: gitview: Fix DeprecationWarning DeprecationWarning: integer argument expected, got float Signed-off-by: Aneesh Kumar K.V <aneesh.kumar@xxxxxxxxx> --- contrib/gitview/gitview | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) 1d34275e275b7450721033bf261ea29219934982 diff --git a/contrib/gitview/gitview b/contrib/gitview/gitview index b04df74..4a6b448 100755 --- a/contrib/gitview/gitview +++ b/contrib/gitview/gitview @@ -154,7 +154,7 @@ class CellRendererGraph(gtk.GenericCellR cols = self.node[0] for start, end, colour in self.in_lines + self.out_lines: - cols = max(cols, start, end) + cols = int(max(cols, start, end)) (column, colour, names) = self.node names_len = 0 -- 1.2.3.g2cf3-dirty