summaryrefslogtreecommitdiff
path: root/morphlib/mountableimage.py
Commit message (Collapse)AuthorAgeFilesLines
* Stop using bare except: statementsLars Wirzenius2013-04-161-7/+12
| | | | | | | | | It is almost never a good idea to catch all exceptions, and then do nothing about them. This patch logs all caught exceptions so that the user has some possibilty to debug what is happening. Also, make ./check check for bare excepts and fail the test suite if it finds anything.
* Move MountableImage class into morphlibJannis Pohlmann2013-02-211-0/+81
This class would be pretty useful in other cases where a system image needs to be mounted and inspected. Also updates the Trebuchet plugin to use this class.