From 1c38faf5c115bfe687d6f81e504dbd31117f9018 Mon Sep 17 00:00:00 2001 From: Heikki Hokkanen Date: Thu, 18 Jun 2009 20:25:47 +0300 Subject: [PATCH] Fixed the strftime format string. Month was used where minute was supposed to be... wrong case :) --- gitstats | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gitstats b/gitstats index 0b112fd..9830b57 100755 --- a/gitstats +++ b/gitstats @@ -463,7 +463,7 @@ class HTMLReportCreator(ReportCreator): shutil.copyfile(basedir + '/' + file, path + '/' + file) f = open(path + "/index.html", 'w') - format = '%Y-%m-%d %H:%m:%S' + format = '%Y-%m-%d %H:%M:%S' self.printHeader(f) f.write('

GitStats - %s

' % data.projectname) -- 2.11.4.GIT