diff options
author | Gary Kotton <gkotton@redhat.com> | 2013-01-08 11:15:17 +0000 |
---|---|---|
committer | Gary Kotton <gkotton@redhat.com> | 2013-01-08 11:15:17 +0000 |
commit | 33a355a9332d819d7106317b2816f37b0652c096 (patch) | |
tree | a75fb749310e61ccbf9bf90e736e5e2e6d264001 /bin | |
parent | 5f74f5063511054f0de929c84d651de826970994 (diff) | |
download | neutron-33a355a9332d819d7106317b2816f37b0652c096.tar.gz |
Fix import for quantum-db-manage
Fixes bug 1097235
Change-Id: I4d44edcfa8efe910f0237fb6248b2f14e734141b
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/quantum-db-manage | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/bin/quantum-db-manage b/bin/quantum-db-manage index 5c06512e40..a28abe484a 100755 --- a/bin/quantum-db-manage +++ b/bin/quantum-db-manage @@ -19,7 +19,8 @@ import os import sys sys.path.insert(0, os.getcwd()) -from quantum.cli import main + +from quantum.db.migration.cli import main main() |