pull-lp-source: Return an error message if dget is not installed.

This commit is contained in:
Jonathan Davies 2009-05-28 03:31:23 -04:00
parent 27f83c2602
commit b85dc1a793

View File

@ -90,3 +90,5 @@ if __name__ == '__main__':
except ValueError, e:
print 'Error when downloading package %s from release %s: %s.' % \
(package, release, e)
except OSError, e:
print "Failed to start child process of dget: %s." % e