28 lines
1.0 KiB
Diff
28 lines
1.0 KiB
Diff
From 4d57212f4c3b7cca3844050a17518ca46bc1859a Mon Sep 17 00:00:00 2001
|
|
From: Anish Bhatt <anish.bhatt@salesforce.com>
|
|
Date: Mon, 10 Jul 2023 10:09:17 -0700
|
|
Subject: [PATCH] When parsing over a KVP list, do not return till the whole
|
|
list is parsed
|
|
|
|
Conflict:NA
|
|
Reference:https://github.com/rpm-software-management/dnf/commit/4d57212f4c3b7cca3844050a17518ca46bc1859a
|
|
---
|
|
dnf/repodict.py | 4 ++--
|
|
1 file changed, 2 insertions(+), 2 deletions(-)
|
|
|
|
diff --git a/dnf/repodict.py b/dnf/repodict.py
|
|
index ffa0f8ed88..82c05ac002 100644
|
|
--- a/dnf/repodict.py
|
|
+++ b/dnf/repodict.py
|
|
@@ -79,8 +79,8 @@ def substitute(values):
|
|
if isinstance(value, str):
|
|
substituted.append(
|
|
libdnf.conf.ConfigParser.substitute(value, conf.substitutions))
|
|
- if substituted:
|
|
- return substituted
|
|
+ if substituted:
|
|
+ return substituted
|
|
return values
|
|
|
|
repo = dnf.repo.Repo(repoid, conf)
|