We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e35fea2 commit 55c5c28Copy full SHA for 55c5c28
gitstats
@@ -75,7 +75,7 @@ def getpipeoutput(cmds, quiet = False):
75
def getlogrange(defaultrange = 'HEAD', end_only = True):
76
commit_range = getcommitrange(defaultrange, end_only)
77
if len(conf['start_date']) > 0:
78
- return '--since=%s %s' % (conf['start_date'], commit_range)
+ return '--since="%s" "%s"' % (conf['start_date'], commit_range)
79
return commit_range
80
81
def getcommitrange(defaultrange = 'HEAD', end_only = False):
0 commit comments