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 eb5f9a9 commit 871d7f7
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 3 deletions.
File renamed without changes.
File renamed without changes.
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/
CONFIG_DIR=.known-issues/

LOG_FILE=$1
BUILDDIR=$(dirname $LOG_FILE)
Expand Down
4 changes: 2 additions & 2 deletions 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 @@ -155,7 +155,7 @@ def config_import(paths):
logging.basicConfig(level=40 - 10 * (args.verbosity - args.quiet),
format="%(levelname)s: %(message)s")

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

0 comments on commit 871d7f7

Please sign in to comment.