Explorar el Código

Fixes issue https://github.com/hoxu/gitstats/issues/36 . Making as default end_only False in getlogrange.

FJRA hace 7 años
padre
commit
454f255da4
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1
    1
      gitstats

+ 1
- 1
gitstats Ver fichero

@@ -72,7 +72,7 @@ def getpipeoutput(cmds, quiet = False):
72 72
 	exectime_external += (end - start)
73 73
 	return output.rstrip('\n')
74 74
 
75
-def getlogrange(defaultrange = 'HEAD', end_only = True):
75
+def getlogrange(defaultrange = 'HEAD', end_only = False):
76 76
 	commit_range = getcommitrange(defaultrange, end_only)
77 77
 	if len(conf['start_date']) > 0:
78 78
 		return '--since="%s" "%s"' % (conf['start_date'], commit_range)