Ban db import from nova/virt

This makes hacking.py complain if someone adds something like:

  from nova import db

into any of the files in nova/virt/* (aside from the fake.py file).
It also removes the rest of the dangling db imports that are no
longer needed.

Yay!

Change-Id: Iba3d53b87e65e33a55f8e5033b5d1d33b28d12f7
This commit is contained in:
Dan Smith 2012-11-08 15:37:44 -08:00
parent 2c509dbde4
commit cd5b5d664f
1 changed files with 1 additions and 0 deletions

View File

@ -33,6 +33,7 @@ Imports
- Do not import objects, only modules (*)
- Do not import more than one module per line (*)
- Do not make relative imports
- Do not make new nova.db imports in nova/virt/*
- Order your imports by the full module path
- Organize your imports according to the following template