Mercurial > touhou
diff pytouhou/vm/eclrunner.py @ 99:68aa8bf00c88
Change a debug string to avoid confusion
author | Thibaut Girka <thib@sitedethib.com> |
---|---|
date | Sun, 04 Sep 2011 23:55:35 +0200 |
parents | ac2e5e1c2c3c |
children | 5c40cc1b8019 |
line wrap: on
line diff
--- a/pytouhou/vm/eclrunner.py +++ b/pytouhou/vm/eclrunner.py @@ -54,7 +54,7 @@ class ECLMainRunner(object): try: callback = self._handlers[instr_type] except KeyError: - logger.warn('unhandled opcode %d (args: %r)', instr_type, args) + logger.warn('unhandled main opcode %d (args: %r)', instr_type, args) else: callback(self, sub, instr_type, *args)