From: Michael Tremer Date: Tue, 18 Oct 2022 18:13:40 +0000 (+0000) Subject: repos: Use the name in the configuration file X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=807385dd42bb80a3e68d780e9ad51a8bb98475d6;p=pbs.git repos: Use the name in the configuration file Signed-off-by: Michael Tremer --- diff --git a/src/buildservice/repository.py b/src/buildservice/repository.py index 052d7962..316de716 100644 --- a/src/buildservice/repository.py +++ b/src/buildservice/repository.py @@ -281,7 +281,7 @@ class Repository(base.DataObject): config.add_section(section) # Description - config.set(section, "description", "%s - %s" % (self.distro.name, self.summary)) + config.set(section, "description", "%s - %s" % (self.distro.name, self.name)) # Base URL config.set(section, "baseurl", self.path if local else self.url)