# HG changeset patch # User Thibaut Girka # Date 1315173335 -7200 # Node ID 68aa8bf00c88020556d8a230bb536efa5b5fdf6f # Parent d141c851c598a41e00936f66e8b1ab5d2abc7174 Change a debug string to avoid confusion diff --git a/pytouhou/vm/eclrunner.py b/pytouhou/vm/eclrunner.py --- 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)