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

@ -74,7 +74,8 @@ class PARAM(object):
readonly=self.readonly,
value=self.value,
timestamp=self.timestamp,
validator=repr(self.validator),
validator=str(self.validator) if not isinstance(
self.validator, type) else self.validator.__name__
)