diff options
| author | MORITA Kazutaka <morita.kazutaka@gmail.com> | 2011-05-19 21:31:14 +0900 |
|---|---|---|
| committer | MORITA Kazutaka <morita.kazutaka@gmail.com> | 2011-05-19 21:31:14 +0900 |
| commit | 0b698186b56af6580633dedd7916df2897945f29 (patch) | |
| tree | 4e667bffa320013b3cef5217dc831691d7b1dedb | |
| parent | 5a3bd10a2ada4ab1287b115051578b7b27bba6bc (diff) | |
Avoid wildcard import.
| -rw-r--r-- | nova/db/sqlalchemy/migrate_repo/versions/019_add_volume_snapshot_support.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/nova/db/sqlalchemy/migrate_repo/versions/019_add_volume_snapshot_support.py b/nova/db/sqlalchemy/migrate_repo/versions/019_add_volume_snapshot_support.py index 288f63e72..5a44bac16 100644 --- a/nova/db/sqlalchemy/migrate_repo/versions/019_add_volume_snapshot_support.py +++ b/nova/db/sqlalchemy/migrate_repo/versions/019_add_volume_snapshot_support.py @@ -15,8 +15,8 @@ # License for the specific language governing permissions and limitations # under the License. -from sqlalchemy import * -from migrate import * +from sqlalchemy import Column, Table, MetaData +from sqlalchemy import Integer, DateTime, Boolean, String from nova import log as logging |
