Skip to content

Commit

Permalink
temp
Browse files Browse the repository at this point in the history
  • Loading branch information
dralley committed Nov 8, 2023
1 parent 96212c7 commit 0a2edf6
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/python/createrepo_c/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -398,7 +398,7 @@ def __init__(self,
destination,
num_packages=None,
unique_md_filenames=True,
changelog_limit=None,
changelog_limit=10,
preserve_existing_metadata=False,
compression=ZSTD_COMPRESSION,
checksum_type=SHA256,
Expand Down Expand Up @@ -521,8 +521,9 @@ def add_pkg_from_file(self, path):

pkg = package_from_rpm(
path,
location_href=str(relative_path),
checksum_type=self._checksum_type,
location_href=str(relative_path),
location_base=None,
changelog_limit=self._changelog_limit
)

Expand Down

0 comments on commit 0a2edf6

Please sign in to comment.