help for functions

This commit is contained in:
ecdsa 2013-03-04 17:49:35 +01:00
parent c00d3a34eb
commit 0c2a02f0fc
1 changed files with 1 additions and 1 deletions

View File

@ -192,7 +192,7 @@ class Console(QtGui.QPlainTextEdit):
self.skip = not self.skip
if type(self.namespace.get(command)) == type(lambda:None):
self.appendPlainText("'%s' is a function. Type '%s()' to call it."%(command, command))
self.appendPlainText("'%s' is a function. Type '%s()' to use it in the Python console."%(command, command))
self.newPrompt()
return