1
0
mirror of https://github.com/openSUSE/osc.git synced 2024-09-21 01:36:16 +02:00

Merge branch 'fix_issue_471' of https://github.com/lethliel/osc

Fix pubkey handling. This a follow-up fix for commit
65b053abb3 ("replace urlgrabber to
enable python3 compatibility").
This commit is contained in:
Marcus Huewe 2018-11-20 21:18:13 +01:00
commit 28fdb9e991

View File

@ -272,7 +272,7 @@ class Fetcher:
elif not self.offline: elif not self.offline:
OscFileGrabber().urlgrab(url, dest) OscFileGrabber().urlgrab(url, dest)
# not that many keys usually # not that many keys usually
if i not in buildinfo.prjkeys: if i not in buildinfo.prjkeys and not try_parent:
buildinfo.keys.append(dest) buildinfo.keys.append(dest)
buildinfo.prjkeys.append(i) buildinfo.prjkeys.append(i)
except KeyboardInterrupt: except KeyboardInterrupt: