Merge lp:~allenap/maas/top-of-file-boilerplate into lp:maas/trunk
Proposed by
Gavin Panella
on 2012-01-19
| Status: | Merged |
|---|---|
| Merged at revision: | 24 |
| Proposed branch: | lp:~allenap/maas/top-of-file-boilerplate |
| Merge into: | lp:maas/trunk |
| Diff against target: |
485 lines (+198/-37) 21 files modified
setup.py (+3/-1) src/maas/development.py (+9/-2) src/maas/production.py (+9/-0) src/maas/settings.py (+9/-2) src/maas/testing/__init__.py (+8/-1) src/maas/testing/runner.py (+12/-0) src/maas/urls.py (+9/-0) src/maasserver/api.py (+18/-3) src/maasserver/context_processors.py (+12/-0) src/maasserver/macaddress.py (+10/-0) src/maasserver/models.py (+13/-0) src/maasserver/testing/factory.py (+19/-3) src/maasserver/tests/__init__.py (+5/-0) src/maasserver/tests/test_api.py (+19/-11) src/maasserver/tests/test_macaddressfield.py (+1/-1) src/maasserver/urls.py (+19/-5) src/maasserver/views.py (+13/-0) templates/module.py (+2/-2) templates/test.py (+2/-2) utilities/format-imports (+5/-3) utilities/python_standard_libs.py (+1/-1) |
| To merge this branch: | bzr merge lp:~allenap/maas/top-of-file-boilerplate |
| Related bugs: |
| Reviewer | Review Type | Date Requested | Status |
|---|---|---|---|
| Raphaël Badin (community) | 2012-01-19 | Approve on 2012-01-19 | |
|
Review via email:
|
|||
Commit Message
Top-of-the-file boilerplate, lint, and import formatting.
To post a comment you must log in.


Looks good.
[1]
230 +__all__ = [
231 + "Factory",
Not sure we need to expose the class itself. The singleton should be sufficient.