浏览代码

Fixed the strftime format string.

Month was used where minute was supposed to be... wrong case :)
Heikki Hokkanen 16 年前
父节点
当前提交
1c38faf5c1
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1
    1
      gitstats

+ 1
- 1
gitstats 查看文件

@@ -463,7 +463,7 @@ class HTMLReportCreator(ReportCreator):
463 463
 			shutil.copyfile(basedir + '/' + file, path + '/' + file)
464 464
 
465 465
 		f = open(path + "/index.html", 'w')
466
-		format = '%Y-%m-%d %H:%m:%S'
466
+		format = '%Y-%m-%d %H:%M:%S'
467 467
 		self.printHeader(f)
468 468
 
469 469
 		f.write('<h1>GitStats - %s</h1>' % data.projectname)