Calling required/unimplemented methods fails
Bug #428548 reported by
Iain Lowe
This bug affects 1 person
Affects | Status | Importance | Assigned to | Milestone | |
---|---|---|---|---|---|
VMBuilder |
Fix Committed
|
Low
|
Iain Lowe |
Bug Description
Calling required methods on "interfaces" in distro.py, hypervisor.py and suite.py fails on a call to NotImplemented with stack trace:
Traceback (most recent call last):
File "/home/
self.
File "/usr/lib/
callableObj
File "/home/
raise NotImplemented(
TypeError: 'NotImplemented
Related branches
Changed in vmbuilder: | |
assignee: | nobody → Iain Lowe (ilowe) |
status: | New → In Progress |
Changed in vmbuilder: | |
importance: | Undecided → Low |
Changed in vmbuilder: | |
status: | Fix Committed → Fix Released |
status: | Fix Released → Fix Committed |
To post a comment you must log in.
The attached branch fixes this issue by calling NotImplementedError instead of NotImplemented; I did this in order to preserve the exception messages. They're not strictly required though. Eventually, we should probably just raise NotImplemented instead of building custom exception messages.