This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author krisp1506
Recipients krisp1506, lys.nikolaou, pablogsal
Date 2021-11-03.07:49:03
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1635925743.59.0.349899416416.issue45699@roundup.psfhosted.org>
In-reply-to
Content
```
Traceback (most recent call last):
  File "gpgcheck.py", line 33, in <module>
    if config.get(repoName, 'gpgcheck', fallback='1') != "1":
  File "/usr/lib64/python3.6/configparser.py", line 802, in get
    d)
  File "/usr/lib64/python3.6/configparser.py", line 394, in before_get
    self._interpolate_some(parser, option, L, value, section, defaults, 1)
  File "/usr/lib64/python3.6/configparser.py", line 413, in _interpolate_some
    p = rest.find("%")
AttributeError: 'list' object has no attribute 'find'
```


I checked all the calls made to `_interpolate_some`, and each call seems to pass the `list` type argument in the 4th position, but then function calling a `find` method on that 4th `list` type argument.  Which is causing above error.
History
Date User Action Args
2021-11-03 07:49:03krisp1506setrecipients: + krisp1506, lys.nikolaou, pablogsal
2021-11-03 07:49:03krisp1506setmessageid: <1635925743.59.0.349899416416.issue45699@roundup.psfhosted.org>
2021-11-03 07:49:03krisp1506linkissue45699 messages
2021-11-03 07:49:03krisp1506create