commit 0c2a02f0fc934d632449541c8a68ff7488412889 parent c00d3a34eb0e17ac21965f83abdd58032e808890 Author: ecdsa <ecdsa@github> Date: Mon, 4 Mar 2013 17:49:35 +0100 help for functions Diffstat:
M | gui/qt_console.py | | | 2 | +- |
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/gui/qt_console.py b/gui/qt_console.py @@ -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