From d322fc8e57a1e2e8769ffc2baf5664febdb093be Mon Sep 17 00:00:00 2001 From: yrriban Date: Sun, 2 Aug 2026 22:48:56 -0400 Subject: [PATCH] More clearly denote the error if there's no COMPLVL lump. --- doomcc/configure.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doomcc/configure.py b/doomcc/configure.py index 080f613..90199ee 100644 --- a/doomcc/configure.py +++ b/doomcc/configure.py @@ -22,7 +22,7 @@ class Configure(doomcc.doom_base.Wad): wad = omg.WadIO(w) complevel = wad.read("COMPLVL").decode("ascii").strip() except Exception as e: - print(f"Wad {w} likely has no lump COMPLVL (exception {e})") + print(f"Wad {w} likely has no lump COMPLVL (exception {e=})") if complevel is None: complevel = input("Complevel? ")