Merge lp:~milo/linaro-image-tools/bug1073973 into lp:linaro-image-tools/11.11
Proposed by
Milo Casagrande
Status: | Merged |
---|---|
Approved by: | Stevan Radaković |
Approved revision: | 602 |
Merged at revision: | 604 |
Proposed branch: | lp:~milo/linaro-image-tools/bug1073973 |
Merge into: | lp:linaro-image-tools/11.11 |
Diff against target: |
185 lines (+33/-31) 5 files modified
linaro_image_tools/hwpack/builder.py (+4/-4) linaro_image_tools/hwpack/config.py (+18/-16) linaro_image_tools/hwpack/handler.py (+2/-2) linaro_image_tools/hwpack/tests/test_config_v3.py (+8/-8) linaro_image_tools/hwpack/tests/test_script.py (+1/-1) |
To merge this branch: | bzr merge lp:~milo/linaro-image-tools/bug1073973 |
Related bugs: |
Reviewer | Review Type | Date Requested | Status |
---|---|---|---|
Stevan Radaković | Approve | ||
Review via email:
|
Description of the change
The proposed branch fixes the duplicate error shown: the bootloader attribute setter and getter have been reworked. Instead of performing the lookup of the bootloader during the setter operation, now it is done during the getter one, setting the internal bootloader
variable if it is none.
Some other minor refactorings have been performed.
To post a comment you must log in.
Hey Milo, this looks good,
The diff part with method removal of set_board confused me a bit, didn't see anything about it in the description
One question regarding
86 + _get_bootloader , _set_bootloader)
87 + bootloader = property(
Shouldn't we put this property definition on the top of the class? it really looks strange being in the middle of method definition...