diff options
| author | Ulf Magnusson <ulfalizer@gmail.com> | 2019-10-10 11:49:21 +0200 |
|---|---|---|
| committer | Ulf Magnusson <ulfalizer@gmail.com> | 2019-10-10 11:49:21 +0200 |
| commit | 4de95f410fd4c170f5ccdb9a4c74d383e0574d55 (patch) | |
| tree | 99fd97a57c40522df92fe396c0bbc88a1e2dda7d | |
| parent | bed364906faa6fa1b55c39607f9e2e65bd565d59 (diff) | |
Mention that standard_kconfig() returns the Kconfig instance
Accidentally left out when the docstring was rewritten.
| -rw-r--r-- | kconfiglib.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/kconfiglib.py b/kconfiglib.py index ba0418d..16ea20d 100644 --- a/kconfiglib.py +++ b/kconfiglib.py @@ -6060,7 +6060,8 @@ _unescape_sub = re.compile(r"\\(.)").sub def standard_kconfig(description=None): """ Argument parsing helper for tools that take a single optional Kconfig file - argument (default: Kconfig). Uses argparse internally. + argument (default: Kconfig). Returns the Kconfig instance for the parsed + configuration. Uses argparse internally. Exits with sys.exit() (which raises SystemExit) on errors. |
