We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents df7eeca + 89e8e0a commit 019b336Copy full SHA for 019b336
ovirtlago/__init__.py
@@ -66,7 +66,7 @@ def _fix_reposync_issues(reposync_out, repo_path):
66
'sometimes reposync fails to update some packages that have older '
67
'versions already downloaded, will remove those if any and retry'
68
)
69
- package_regex = re.compile(r'(?P<package_name>[^:\r]+): \[Errno 256\]')
+ package_regex = re.compile(r'(?P<package_name>[^:\r\s]+): \[Errno 256\]')
70
for match in package_regex.findall(reposync_out):
71
find_command = ['find', repo_path, '-name', match + '*', ]
72
ret, out, _ = utils.run_command(find_command)
0 commit comments