From 9bc712761dc524e87a9d95a347fc19a292c2b5ca Mon Sep 17 00:00:00 2001 From: Ian Gulliver Date: Sat, 23 Apr 2016 15:11:15 -0700 Subject: [PATCH] getinfo --- ilt1000.py | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/ilt1000.py b/ilt1000.py index 7d4b06c..a1b34ed 100755 --- a/ilt1000.py +++ b/ilt1000.py @@ -79,8 +79,6 @@ class CommandError(Error): # getfriendlyname # setfriendlyname -# getinfo - # getintegrate # startintegrate # topintegrate @@ -351,6 +349,11 @@ class ILT1000(object): ret['samples'].append(_Row(fields, sample)) return ret + def GetInfo(self): + # SPEC ERROR: There doesn't seem to be a good way to, other than a timing + # hack, to find the end of the getinfo response. + raise UnsupportedCommand + class _Row(object):