summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorSylvain Th?nault <sylvain.thenault@logilab.fr>2011-12-05 16:04:41 +0100
committerSylvain Th?nault <sylvain.thenault@logilab.fr>2011-12-05 16:04:41 +0100
commit6dc53ce378061759f04f35b6c3413d1e3162b2b5 (patch)
tree2c37dc2c0441a91776431296c51942215dd607d9 /doc
parent17c5d6905a96f9e938673e2f030b0a8433c7f00a (diff)
downloadpylint-6dc53ce378061759f04f35b6c3413d1e3162b2b5.tar.gz
doc update
Diffstat (limited to 'doc')
-rw-r--r--doc/manual.txt4
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/manual.txt b/doc/manual.txt
index 30bbc23..17be0a0 100644
--- a/doc/manual.txt
+++ b/doc/manual.txt
@@ -184,13 +184,13 @@ It is also possible to call Pylint from an other Python program,
thanks to ``py_run()`` function in ``lint`` module,
assuming Pylint options are stored in ``pylint_options`` string, as ::
- from pylint import lint
+ from pylint import epylint as lint
lint.py_run( pylint_options)
To silently run Pylint on a ``module_name.py`` module,
and get its standart output and error::
- from pylint import lint
+ from pylint import epylint as lint
(pylint_stdout, pylint_stderr) = lint.py_run( 'module_name.py', True)