Skip to content

Commit a85c6b1

Browse files
authored
Merge pull request #104 from scanoss/fix/mdaloia/fix-typo
fix sys.call typo
2 parents 46aea97 + a3f4b7e commit a85c6b1

File tree

3 files changed

+10
-5
lines changed

3 files changed

+10
-5
lines changed

CHANGELOG.md

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
99
### Added
1010
- Upcoming changes...
1111

12+
## [1.20.3] - 2025-03-03
13+
### Fixed
14+
- Fixed cli.py typo
15+
1216
## [1.20.2] - 2025-02-26
1317
### Fixed
1418
- Fixed provenance command
@@ -466,4 +470,5 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
466470
[1.19.5]: https://github.com/scanoss/scanoss.py/compare/v1.19.4...v1.19.5
467471
[1.20.0]: https://github.com/scanoss/scanoss.py/compare/v1.19.5...v1.20.0
468472
[1.20.1]: https://github.com/scanoss/scanoss.py/compare/v1.20.0...v1.20.1
469-
[1.20.2]: https://github.com/scanoss/scanoss.py/compare/v1.20.1...v1.20.2
473+
[1.20.2]: https://github.com/scanoss/scanoss.py/compare/v1.20.1...v1.20.2
474+
[1.20.3]: https://github.com/scanoss/scanoss.py/compare/v1.20.2...v1.20.3

src/scanoss/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,4 +22,4 @@
2222
THE SOFTWARE.
2323
"""
2424

25-
__version__ = '1.20.2'
25+
__version__ = '1.20.3'

src/scanoss/cli.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -595,7 +595,7 @@ def setup_args() -> None: # noqa: PLR0915
595595
args = parser.parse_args()
596596
if args.version:
597597
ver(parser, args)
598-
sys.sys.exit(0)
598+
sys.exit(0)
599599
if not args.subparser:
600600
parser.print_help() # No sub command subcommand, print general help
601601
sys.exit(1)
@@ -1064,7 +1064,7 @@ def inspect_copyleft(parser, args):
10641064
explicit=args.explicit,
10651065
)
10661066
status, _ = i_copyleft.run()
1067-
sys.sys.exit(status)
1067+
sys.exit(status)
10681068

10691069

10701070
def inspect_undeclared(parser, args):
@@ -1101,7 +1101,7 @@ def inspect_undeclared(parser, args):
11011101
sbom_format=args.sbom_format,
11021102
)
11031103
status, _ = i_undeclared.run()
1104-
sys.sys.exit(status)
1104+
sys.exit(status)
11051105

11061106

11071107
def utils_certloc(*_):

0 commit comments

Comments
 (0)