Skip to content

Commit

Permalink
Print out the level name, which is so much more helpful now that we'v…
Browse files Browse the repository at this point in the history
…e moved around with just naming levels by number
  • Loading branch information
adamdoupe committed Aug 6, 2024
1 parent 5d962a3 commit 8e445ec
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pwnshop/__main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -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():
Expand Down

0 comments on commit 8e445ec

Please sign in to comment.