Stub debug client gui.

Change-Id: Ib422c66bc36245e1fc3c450765d7555da5c8dda0
This commit is contained in:
Alexander Lenz
2016-12-05 16:20:55 +01:00
parent 68f73b5aa1
commit d442da0789
17 changed files with 935 additions and 10 deletions

View File

@ -278,7 +278,7 @@ class Dispatcher(object):
def _getParamValue(self, modulename, pname):
moduleobj = self.get_module(modulename)
if moduleobj is None:
raise NoSuchmoduleError(module=modulename)
raise NoSuchModuleError(module=modulename)
pobj = moduleobj.PARAMS.get(pname, None)
if pobj is None: