pacman: Fix package matching pattern in upgraded package list (#23433)

This commit is contained in:
Indrajit Raychaudhuri 2017-04-09 04:21:55 -05:00 committed by René Moser
parent bb5202fa7e
commit 9a850db605

View file

@ -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: