Ran update_copyright.py.
[hooke.git] / hooke / plugin / debug.py
index 405fdde17d424b868319808b4130f78900c2a958..6a8acbc0ff727f90d37af61dbf349732cd17198d 100644 (file)
@@ -1,4 +1,20 @@
-# Copyright
+# Copyright (C) 2010-2011 W. Trevor King <wking@drexel.edu>
+#
+# This file is part of Hooke.
+#
+# Hooke is free software: you can redistribute it and/or modify it
+# under the terms of the GNU Lesser General Public License as
+# published by the Free Software Foundation, either version 3 of the
+# License, or (at your option) any later version.
+#
+# Hooke is distributed in the hope that it will be useful, but WITHOUT
+# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
+# or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU Lesser General
+# Public License for more details.
+#
+# You should have received a copy of the GNU Lesser General Public
+# License along with Hooke.  If not, see
+# <http://www.gnu.org/licenses/>.
 
 """The `debug` module provides :class:`DebugPlugin` and associated
 :class:`hooke.command.Command`\s which provide useful debugging
@@ -10,24 +26,22 @@ import sys
 
 from .. import version
 from ..command import Command, Argument
-from ..plugin import Builtin
+from . import Builtin
 
 
 class DebugPlugin (Builtin):
     def __init__(self):
         super(DebugPlugin, self).__init__(name='debug')
-
-    def commands(self):
-        return [VersionCommand(), DebugCommand()]
+        self._commands = [VersionCommand(self), DebugCommand(self)]
 
 
 class VersionCommand (Command):
     """Get the Hooke version, as well as versions for important Python
     packages.  Useful for debugging.
     """
-    def __init__(self):
+    def __init__(self, plugin):
         super(VersionCommand, self).__init__(
-            name='version', help=self.__doc__)
+            name='version', help=self.__doc__, plugin=plugin)
 
     def _run(self, hooke, inqueue, outqueue, params):
         lines = [
@@ -57,7 +71,7 @@ class VersionCommand (Command):
 class DebugCommand (Command):
     """Get Hooke attributes.  Useful for debugging.
     """
-    def __init__(self):
+    def __init__(self, plugin):
         super(DebugCommand, self).__init__(
             name='debug',
             arguments=[
@@ -65,7 +79,7 @@ class DebugCommand (Command):
 Hooke attribute to print.
 """.strip()),
                 ],
-            help=self.__doc__)
+            help=self.__doc__, plugin=plugin)
 
     def _run(self, hooke, inqueue, outqueue, params):
         if params['attribute'] == None: