diff options
| author | Giampaolo Rodola <g.rodola@gmail.com> | 2015-05-28 09:28:46 +0200 |
|---|---|---|
| committer | Giampaolo Rodola <g.rodola@gmail.com> | 2015-05-28 09:28:46 +0200 |
| commit | 58711c2db81d437fdcf5b8aedf68bfd00fc089fd (patch) | |
| tree | eb674a9295aeb95453278214dae705e006109ee9 /docs | |
| parent | 9007757dc40e8b8702b81a2c6ce8303d8506733d (diff) | |
| download | psutil-58711c2db81d437fdcf5b8aedf68bfd00fc089fd.tar.gz | |
update doc
Diffstat (limited to 'docs')
| -rw-r--r-- | docs/index.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/index.rst b/docs/index.rst index efbab674..000ac20d 100644 --- a/docs/index.rst +++ b/docs/index.rst @@ -568,7 +568,7 @@ Functions import psutil def on_terminate(proc): - print("process {} terminated".format(proc)) + print("process {} terminated with exit code {}".format(proc, proc.returncode)) procs = [...] # a list of Process instances for p in procs: |
