Skip to content

Commit

Permalink
debug
Browse files Browse the repository at this point in the history
  • Loading branch information
arthw committed Nov 7, 2024
1 parent 29fae73 commit eb5f9a9
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion scripts/filter-doc-log.sh
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
# Only argument is the name of the log file saved by the build.

KI_SCRIPT=scripts/filter-known-issues.py
CONFIG_DIR=known-issues/doc
CONFIG_DIR=known-issues/

LOG_FILE=$1
BUILDDIR=$(dirname $LOG_FILE)
Expand Down
3 changes: 2 additions & 1 deletion scripts/filter-known-issues.py
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,7 @@ def config_import(paths):
arg_parser.add_argument("-w", "--warnings", action="store", default=None,
help="file where to store warnings")
arg_parser.add_argument("-c", "--config-dir", action="append", nargs="?",
default=[".known-issues/"],
default=["known-issues/"],
help="configuration directory (multiple can be "
"given; if none given, clears the current list) "
"%(default)s")
Expand All @@ -157,6 +157,7 @@ def config_import(paths):

path = "known-issues/"
logging.debug("Reading configuration from directory `%s`", path)
print('args.config_dir', args.config_dir)
config_import(args.config_dir)

exclude_ranges = []
Expand Down

0 comments on commit eb5f9a9

Please sign in to comment.