소스 검색

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)