Commit 141ff12f authored by Antoine Millet's avatar Antoine Millet
Browse files

Fixed list commands.

parent ea30528e
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -51,8 +51,8 @@ class CCHandler(RpcHandler):
            logging.debug('Called %s.%s' % (self.__class__.__name__, name))
            return super(CCHandler, self).__getitem__(name)

    @pure
    def list_commands(self):

    def list_commands(self, conn):
        cmd_list = []

        for attr in dir(self):