# HG changeset patch # User HackEso # Date 1563290328 0 # Node ID cfb04b3810bf2750fa1b65fdbbd57dfbf250c17b # Parent 217f932e35dce29b1db63ec9eea4f6c1e3ab3210 fetch bin/whatis https://hack.esolangs.org/get/bin/whatis diff -r 217f932e35dc -r cfb04b3810bf bin/whatis --- a/bin/whatis Tue Jul 16 15:17:09 2019 +0000 +++ b/bin/whatis Tue Jul 16 15:18:48 2019 +0000 @@ -13,7 +13,7 @@ if parts: match = False for argfold in argfoldv: - match = match or argfold == parts[1].casefold() + match = match or argfold == parts.group(1).casefold() if match: sys.stdout.write(line)