From eb9850069dece98d650d1a93cca131695e1a4945 Mon Sep 17 00:00:00 2001 From: root Date: Fri, 11 Nov 2022 15:03:12 +0300 Subject: [PATCH] =?UTF-8?q?=09=D0=B8=D0=B7=D0=BC=D0=B5=D0=BD=D0=B5=D0=BD?= =?UTF-8?q?=D0=BE:=20=20=20=20=20=20pym/update/variables/update.py?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- pym/update/variables/update.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pym/update/variables/update.py b/pym/update/variables/update.py index 1f46e69..2ee4cf1 100644 --- a/pym/update/variables/update.py +++ b/pym/update/variables/update.py @@ -184,11 +184,11 @@ class VariableClUpdateInnerRepList(Variable): for dct in val: for key, value in dct.items(): if key == prev_host: - yield value, key.lower() + yield value, key for dct in val: for key, value in dct.items(): if key != prev_host: - yield value, key.lower() + yield value, key return [x for x in gen()] @@ -200,7 +200,7 @@ class VariableClUpdateRepHostingChoice(Variable): type = "choice" value = '' opt = ["--repo-update"] - metavalue = (_("REPOSITORY URL")) + metavalue = "REPOSITORY URL" def init(self): self.label = (_("Update repository"))