main.go | 18 ++----------------
diff --git a/main.go b/main.go
index 96912ee1325023661b500c6d8e41d97e768e672edf62aa9c767b91c35a8dd7a6..4769714353603f65e41feb935643c3f53d75e669057d9cd5dcaa232aac107afc 100644
--- a/main.go
+++ b/main.go
@@ -63,7 +63,7 @@
func doList() {
htmlStart("Git repositories")
fmt.Print(`
-| repo | description | idle | format |
+| repo | description | idle |
`)
for _, name := range Dirs {
descr, err := os.ReadFile(path.Join(BaseDir, name, "description"))
@@ -84,26 +84,12 @@ if err != nil {
r.Close()
continue
}
- cfg, err := r.Config()
- if err != nil {
- r.Close()
- continue
- }
- objFmt := cfg.Extensions.ObjectFormat
- if objFmt == "" {
- objFmt = "legacy"
- }
fmt.Printf(`
| %s |
-%s |
%s |
%s |
-`,
- name, name,
- string(descr),
- humanize.Time(c.Committer.When),
- objFmt)
+`, name, name, string(descr), humanize.Time(c.Committer.When))
}
fmt.Print("
")
htmlStop()