pacman: Fix package matching pattern in upgraded package list (#23433)
This commit is contained in:
parent
bb5202fa7e
commit
9a850db605
1 changed files with 1 additions and 1 deletions
|
@ -209,7 +209,7 @@ def upgrade(module, pacman_path):
|
|||
}
|
||||
|
||||
if rc == 0:
|
||||
regex = re.compile('(\w+) ((?:\S+)-(?:\S+)) -> ((?:\S+)-(?:\S+))')
|
||||
regex = re.compile('([\w-]+) ((?:\S+)-(?:\S+)) -> ((?:\S+)-(?:\S+))')
|
||||
b = []
|
||||
a = []
|
||||
for p in data:
|
||||
|
|
Loading…
Reference in a new issue