X-Git-Url: https://arthur.barton.de/gitweb/?a=blobdiff_plain;f=lib%2Fbup%2Fgit.py;h=1e2364aaf3b924e114eb6e264c34cd0eceb943db;hb=c3052e6825c5501e5faaaf7137334513e9a172ed;hp=2552c45fdcac4321b0b9f9718192b3353e4b2eb7;hpb=926f2a9e630dbd355f91c77de65831bfce8014a2;p=bup.git diff --git a/lib/bup/git.py b/lib/bup/git.py index 2552c45..1e2364a 100644 --- a/lib/bup/git.py +++ b/lib/bup/git.py @@ -764,7 +764,7 @@ def get_commit_dates(refs): result = [] cmd = ['git', 'show', '-s', '--pretty=format:%ct'] for chunk in batchpipe(cmd, refs, preexec_fn=_gitenv): - result += chunk.splitlines() + result += [int(x) for x in chunk.splitlines()] return result