Skip to content

Commit f89b5d9

Browse files
Pass kwarg for validate_record when called from CLI (#174)
1 parent 59550c8 commit f89b5d9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/installer/__main__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ def _main(cli_args: Sequence[str], program: Optional[str] = None) -> None:
9393

9494
with WheelFile.open(args.wheel) as source:
9595
if args.validate_record != "none":
96-
source.validate_record(args.validate_record == "all")
96+
source.validate_record(validate_contents=args.validate_record == "all")
9797
destination = SchemeDictionaryDestination(
9898
scheme_dict=_get_scheme_dict(source.distribution, prefix=args.prefix),
9999
interpreter=sys.executable,

0 commit comments

Comments
 (0)