Make pylint happy.

This commit is contained in:
Bob Lantz
2012-03-02 15:45:10 -08:00
parent 134a75ef38
commit 6f446f6e55
+3 -1
View File
@@ -107,8 +107,10 @@ class Console( Frame ):
self.text.insert( 'end', text )
self.text.mark_set( 'insert', 'end' )
self.text.see( 'insert' )
outputHook = lambda x,y: True # make pylint happy
if self.outputHook:
self.outputHook( self, text )
outputHook = self.outputHook
outputHook( self, text )
def handleKey( self, event ):
"If it's an interactive command, send it to the node."