From be7f2e1711867caa67750f4b5057b3be0e605df0 Mon Sep 17 00:00:00 2001 From: Elliott Sales de Andrade Date: Feb 05 2020 08:22:54 +0000 Subject: Remove unnessary string format. There's even a comment wondering why it's there, and I don't think it is necessary, and of course does not do anything. --- diff --git a/r2spec/rpackage.py b/r2spec/rpackage.py index 3c74524..98f9ecb 100644 --- a/r2spec/rpackage.py +++ b/r2spec/rpackage.py @@ -276,7 +276,6 @@ class RPackage(object): """ for section in self.config.sections(): if section == 'repo:%s' % reponame: - """ Not sure why this format is getting filled out...""" - self.url = self.config.get(section, 'url' % (self.name)) + self.url = self.config.get(section, 'url') self.source0 = self.config.get(section, 'source') break