Nitpicking an error statement

Make an error statement better to read.

Change-Id: Id7d58510042754806cb31e5d178602daa045891a
This commit is contained in:
Pranesh Pandurangan 2014-06-16 09:54:23 -07:00
parent f0a1ec2e29
commit 3477c118ff
1 changed files with 1 additions and 1 deletions

View File

@ -182,7 +182,7 @@ class _OutputtingRPMCallback(_RPMCallback):
def yyoom_on_missing_package(self, pkg_req):
if not self._skip_missing:
raise yum.Errors.InstallError("The '%s' package not found." % pkg_req)
raise yum.Errors.InstallError("The package '%s' was not found." % pkg_req)
req = pkg_resources.Requirement.parse(pkg_req)
self._missing.append(_package_info(req.unsafe_name,
action_type="missing",