Skip to content

Commit 9f23d38

Browse files
author
Prabhu Subramanian
committed
Tweaks
1 parent 8446797 commit 9f23d38

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

depscan/lib/analysis.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ def print_results(project_type, results, pkg_aliases, sug_version_dict, scoped_p
4747
for h in [
4848
"Id",
4949
"Package",
50-
"Used in App?",
50+
"Used?",
5151
"Version",
5252
"Fix Version",
5353
"Severity",
@@ -60,10 +60,10 @@ def print_results(project_type, results, pkg_aliases, sug_version_dict, scoped_p
6060
width = None
6161
if h == "Id":
6262
width = 20
63-
elif h == "Fix Version":
63+
elif h == "Used?" or h == "Fix Version":
6464
width = 10
6565
elif h == "Description":
66-
width = 60
66+
width = 58
6767
table.add_column(header=h, justify=justify, width=width, no_wrap=False)
6868
for res in results:
6969
vuln_occ_dict = res.to_dict()

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
setuptools.setup(
77
name="appthreat-depscan",
8-
version="1.9.0",
8+
version="1.9.1",
99
author="Team AppThreat",
1010
author_email="[email protected]",
1111
description="Fully open-source security audit for project dependencies based on known vulnerabilities and advisories.",

0 commit comments

Comments
 (0)