Fix hooke -> commands typos in ui and ui.commandline.
authorW. Trevor King <wking@drexel.edu>
Sat, 24 Jul 2010 17:44:29 +0000 (13:44 -0400)
committerW. Trevor King <wking@drexel.edu>
Sat, 24 Jul 2010 17:44:29 +0000 (13:44 -0400)
hooke/ui/__init__.py
hooke/ui/commandline.py

index 38311b4389915de3d906dcc58ce86bd39b48c685..42085c25a0b05b5216cb8263004ae4158a4e1b54 100644 (file)
@@ -29,7 +29,7 @@ from ..util.pluggable import IsSubclass
 
 USER_INTERFACE_MODULES = [
     'commandline',
-    #'gui',
+    'gui',
     ]
 """List of user interface modules.  TODO: autodiscovery
 """
@@ -86,7 +86,7 @@ class UserInterface (object):
         except configparser.NoSectionError:
             self.config = {}
 
-    def run(self, hooke, ui_to_command_queue, command_to_ui_queue):
+    def run(self, commands, ui_to_command_queue, command_to_ui_queue):
         return
 
     # Assorted useful tidbits for subclasses
index c5f3353b000d71a9e8dd8652dda0b6e09492efc1..005e039724eac468ba2b4f3c019df8fd29913f70 100644 (file)
@@ -290,7 +290,7 @@ class LocalHelpCommand (Command):
                      help='The name of the command you want help with.')
             ]
 
-    def _run(self, hooke, inqueue, outqueue, params):
+    def _run(self, commands, inqueue, outqueue, params):
         raise NotImplementedError # cmd.Cmd already implements .do_help()
 
 class LocalExitCommand (Command):
@@ -307,7 +307,7 @@ typing mistakes ;).
 """.strip()),
                 ])
 
-    def _run(self, hooke, inqueue, outqueue, params):
+    def _run(self, commands, inqueue, outqueue, params):
         """The guts of the `do_exit/_quit/_EOF` commands.
 
         A `True` return stops :meth:`.cmdloop` execution.