diff options
| author | Jeff Carr <[email protected]> | 2025-10-19 12:56:33 -0500 |
|---|---|---|
| committer | Jeff Carr <[email protected]> | 2025-10-19 12:56:33 -0500 |
| commit | aba84efbf84d61a538e8c1e34834cd604f81372c (patch) | |
| tree | 9400d43f0814e33a57c050e42c6b099e0f13ac60 /dumbTable.go | |
| parent | 4a74e4af615b6f264c795cb664c55359f588c7c0 (diff) | |
more cases handledv0.0.27
Diffstat (limited to 'dumbTable.go')
| -rw-r--r-- | dumbTable.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/dumbTable.go b/dumbTable.go index 66e5328..bce0b91 100644 --- a/dumbTable.go +++ b/dumbTable.go @@ -47,7 +47,7 @@ func DumbTable3(lines []string) { parts := strings.Fields(line) if len(parts) != 3 { log.Info(parts) - panic("not 3 things") + // panic("not 3 things") continue } if size1 < len(parts[0]) { @@ -65,7 +65,7 @@ func DumbTable3(lines []string) { parts := strings.Fields(line) if len(parts) != 3 { log.Info(parts) - panic("not 3 things") + // panic("not 3 things") continue } line, fmtline := StandardTableRow(sizes, parts) |
