diff options
author | pommicket <pommicket@gmail.com> | 2025-09-23 02:18:01 -0400 |
---|---|---|
committer | pommicket <pommicket@gmail.com> | 2025-09-23 02:18:24 -0400 |
commit | 0ece68fb8a7fd80f4497eaaa0464e0e31980455d (patch) | |
tree | 1625a0e69af7f711ee84d9860812104b66a08d75 /examples | |
parent | b5cdae01c4186f7b52ca1966267a8c735756a891 (diff) |
Start documentation
Diffstat (limited to 'examples')
-rw-r--r-- | examples/read_conf.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/read_conf.py b/examples/read_conf.py index 936157e..bbee83b 100644 --- a/examples/read_conf.py +++ b/examples/read_conf.py @@ -9,6 +9,6 @@ import pom_parser try: filename = 'examples/conf.pom' if len(sys.argv) < 2 else sys.argv[1] conf = pom_parser.load_path(filename) - print(conf.get_list('file-extensions.C',['a'])) + print(conf.location('file-extensions')) except pom_parser.Error as e: print('Parse error:', str(e), sep = '\n') |