mirror of
https://github.com/BioArchLinux/bioarchlinux-tools.git
synced 2025-03-09 22:53:31 +00:00
20230209: fix
This commit is contained in:
parent
3fc1b2c00a
commit
0815062bfa
1 changed files with 1 additions and 1 deletions
|
@ -28,7 +28,7 @@ def search_pkgbuild_for_pkgname(
|
|||
m = re_package.match(l)
|
||||
if m:
|
||||
if m.group(1):
|
||||
ret.add(m.group(1).strip()))
|
||||
ret.add(m.group(1).strip())
|
||||
else:
|
||||
ret.add(pkgbuild.parent.name)
|
||||
except FileNotFoundError:
|
||||
|
|
Loading…
Add table
Reference in a new issue