From 454f255da45add047bb37d9616d4f2ebe90b9bf6 Mon Sep 17 00:00:00 2001 From: FJRA Date: Fri, 25 May 2018 14:06:52 -0500 Subject: [PATCH] Fixes issue https://github.com/hoxu/gitstats/issues/36 . Making as default end_only False in getlogrange. --- gitstats | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gitstats b/gitstats index c71b0e4..d8176eb 100755 --- a/gitstats +++ b/gitstats @@ -72,7 +72,7 @@ def getpipeoutput(cmds, quiet = False): exectime_external += (end - start) return output.rstrip('\n') -def getlogrange(defaultrange = 'HEAD', end_only = True): +def getlogrange(defaultrange = 'HEAD', end_only = False): commit_range = getcommitrange(defaultrange, end_only) if len(conf['start_date']) > 0: return '--since="%s" "%s"' % (conf['start_date'], commit_range)