Skip to content

Commit aac0a57

Browse files
committed
Fix string/bool from Lars review
1 parent 3a6053b commit aac0a57

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

modules/packages/vendored/dnf.mustache

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -159,7 +159,7 @@ def _get_base(with_repos: bool = True) -> dnf.Base:
159159
base.conf.assumeyes = DEFAULT_ASSUME_YES
160160
if with_repos:
161161
base.read_all_repos()
162-
base.fill_sack(load_system_repo='auto')
162+
base.fill_sack(load_system_repo=True)
163163
else:
164164
base.fill_sack(load_system_repo=True, load_available_repos=False)
165165
return base

0 commit comments

Comments
 (0)