Comment 5 for bug 1040213

Revision history for this message
Martin Pitt (pitti) wrote :

Also, please don't use bare "except:" stanzas. This will also hide syntax errors and unknown identifiers like "subprocess.checkoutput". Only intercept the exceptions that you actually expect, such as subprocess.CalledProcessError.

Thanks!