Comment 2 for bug 428722

Revision history for this message
James Westby (james-w) wrote :

Oh, catching and wrapping would be something like

try:
   ...
except OSError, e:
   if e.errno != 2:
     raise
   raise MissingDependency("debuild...

defining MissingDependency near the top of the file if bzr doesn't provide something
we can re-use.

Thanks,

James