changeset 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 d141c851c598
children 5c40cc1b8019
files pytouhou/vm/eclrunner.py
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
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)