From: Ed Bartosh Date: Wed, 6 Jul 2016 11:00:29 +0000 (+0100) Subject: eventreplay: add MockConnection.getEventHandle method X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=6deae30480a4288da0c8b3529e61f3495f260f24;p=thirdparty%2Fopenembedded%2Fopenembedded-core-contrib.git eventreplay: add MockConnection.getEventHandle method Fixed AttributeError: 'MockConnection' object has no attribute 'getEventHandle' [YOCTO #9585] Signed-off-by: Ed Bartosh Signed-off-by: Elliot Smith Signed-off-by: Richard Purdie --- diff --git a/bin/toaster-eventreplay b/bin/toaster-eventreplay index bdddb908b53..14f4f0088b9 100755 --- a/bin/toaster-eventreplay +++ b/bin/toaster-eventreplay @@ -86,6 +86,8 @@ class FileReadEventsServerConnection(): """ do not do anything """ pass + def getEventHandle(self): + pass class EventReader():