Kaydet (Commit) 749f4814 authored tarafından Jack Jansen's avatar Jack Jansen

Backport from r23c1-branch:

Pimp crashed if you tried to install a non-installable package, in stead
of printing a decent error message. Fixes #773450..
üst e676c5ef
......@@ -585,8 +585,8 @@ class PimpPackage:
If output is given it should be a file-like object and it
will receive a log of what happened."""
if not self._dict['Download-URL']:
return "%s: This package needs to be installed manually (no Download-URL field)" % _fmtpackagename(self)
if not self._dict.get('Download-URL'):
return "%s: This package needs to be installed manually (no Download-URL field)" % self.fullname()
msg = self.downloadPackageOnly(output)
if msg:
return "%s: download: %s" % (self.fullname(), msg)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment