From 8e445ec8115ab2faeb6832e9fba12525d7494d4c Mon Sep 17 00:00:00 2001 From: Adam Doupe Date: Tue, 6 Aug 2024 14:27:50 +0000 Subject: [PATCH] Print out the level name, which is so much more helpful now that we've moved around with just naming levels by number --- pwnshop/__main__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pwnshop/__main__.py b/pwnshop/__main__.py index 2123989..9773dc9 100644 --- a/pwnshop/__main__.py +++ b/pwnshop/__main__.py @@ -75,7 +75,7 @@ def handle_verify(args, challenge): def handle_verify_module(args): for n,c in enumerate(c(seed=args.seed, walkthrough=args.walkthrough) for c in pwnshop.MODULE_LEVELS[args.module]): - print(f"Verifying {args.module} level {n+1}.") + print(f"Verifying {args.module} level {n+1}: {type(c).__name__}.") verify_challenge(c, debug=args.debug, flag=args.flag, strace=args.strace) def main():