We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fd14fc0 commit c161e5fCopy full SHA for c161e5f
cve_bin_tool/output_engine/print_mode.py
@@ -22,7 +22,6 @@ def html_print_mode(
22
temp_showcase = "templates/showcase.html"
23
temp_content = "templates/content.html"
24
temp_base = "templates/base.html"
25
- directory = directory
26
27
showcase = templates_env.get_template(temp_showcase)
28
content = templates_env.get_template(temp_content)
cve_bin_tool/version_scanner.py
@@ -41,8 +41,7 @@ def __init__(
41
self.checkers = checkers or self.load_checkers()
42
self.score = score
43
self.total_scanned_files = 0
44
- self.exclude_folders = exclude_folders
45
- self.exclude_folders.append(".git")
+ self.exclude_folders = exclude_folders + [".git"]
46
47
self.walker = DirWalk(
48
folder_exclude_pattern=";".join(
0 commit comments