From b85dc1a7936682d002373e341ee26fd85635da7b Mon Sep 17 00:00:00 2001 From: Jonathan Davies Date: Thu, 28 May 2009 03:31:23 -0400 Subject: [PATCH] pull-lp-source: Return an error message if dget is not installed. --- pull-lp-source | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pull-lp-source b/pull-lp-source index 503027c..665691c 100755 --- a/pull-lp-source +++ b/pull-lp-source @@ -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