Quellcode durchsuchen

Fixed the strftime format string.

Month was used where minute was supposed to be... wrong case :)
Heikki Hokkanen vor 16 Jahren
Ursprung
Commit
1c38faf5c1
1 geänderte Dateien mit 1 neuen und 1 gelöschten Zeilen
  1. 1
    1
      gitstats

+ 1
- 1
gitstats Datei anzeigen

@@ -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)