fix pkg name nevra parsing regex in dnf (#53572)

This commit is contained in:
Adam Miller 2019-03-08 22:53:46 -06:00 committed by Matt Clay
commit 7b98ff6a31
2 changed files with 5 additions and 1 deletions

View file

@ -383,7 +383,7 @@ class DnfModule(YumDnf):
]
rpm_arch_re = re.compile(r'(.*)\.(.*)')
rpm_nevr_re = re.compile(r'(\S+)-(?:(\d*):)?(.*)-(~?\w+[\w.]*)')
rpm_nevr_re = re.compile(r'(\S+)-(?:(\d*):)?(.*)-(~?\w+[\w.+]*)')
try:
arch = None
rpm_arch_match = rpm_arch_re.match(packagename)