Skip to content

Commit 05eafb6

Browse files
author
Jakob Maier
committed
updates
1 parent 8706567 commit 05eafb6

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

examples/client/get_project_vulnerabilites_as_csv.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
Output is in format:
66
identifier, status, comment, componentName, componentVersion, description
77
8-
The API token should be specified in a .env file.
8+
The API token should be specified in a .env file or as environment variable.
99
'''
1010
import re
1111
import os

examples/vuln_batch_remediation.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -200,7 +200,7 @@ def main(argv=None): # IGNORE:C0111
200200
parser.add_argument("--remediation-list", dest="local_remediation_list", default=None, help="Filename of cve remediation list csv file")
201201
parser.add_argument("--origin-exclusion-list", dest="local_origin_exclusion_list", default=None, help="Filename of origin exclusion list csv file")
202202
parser.add_argument("--no-process-cve-remediation-list", dest='process_cve_remediation_list', action='store_false', help="Disable processing CVE-Remediation-list")
203-
parser.add_argument("--no-process-origin-exclusion-list", dest='process_origin_exclusion_list', action='store_false', help="Disable processing Origin-Exclusion-List")
203+
parser.add_argument("--no-process-origin-exclusion-list", dest='process_origin_exclusion_list', default=None, action='store_false', help="Disable processing Origin-Exclusion-List")
204204
parser.add_argument("--cve-remediation-list-custom-field-label", default='CVE Remediation List', help='Label of Custom Field on Black Duck that contains remeidation list file name')
205205
parser.add_argument("--origin-exclusion-list-custom-field-label", default='Origin Exclusion List', help='Label of Custom Field on Black Duck that containts origin exclusion list file name')
206206
parser.add_argument('-V', '--version', action='version', version=program_version_message)

0 commit comments

Comments
 (0)