diff options
author | 2021-02-18 18:23:12 -0700 | |
---|---|---|
committer | 2021-02-18 18:23:12 -0700 | |
commit | ee497f6161c938a2f9d497368c03ce6f70ae6dcd (patch) | |
tree | db20fc844a4512c1f29bfe90c2f839b9ec48582f /README.rst | |
parent | Pipeline: store error result objs for --exit instead of a count (diff) | |
download | pkgcheck-ee497f6161c938a2f9d497368c03ce6f70ae6dcd.tar.gz pkgcheck-ee497f6161c938a2f9d497368c03ce6f70ae6dcd.tar.bz2 pkgcheck-ee497f6161c938a2f9d497368c03ce6f70ae6dcd.zip |
readme: simplify scan() args for API usage example
Diffstat (limited to 'README.rst')
-rw-r--r-- | README.rst | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -48,7 +48,7 @@ the results for a given ebuild repo: from pkgcheck import scan - for result in scan(['-r', '/path/to/ebuild/repo']): + for result in scan(['/path/to/ebuild/repo']): print(result) This allows third party tools written in python to leverage pkgcheck's scanning |