diff options
| author | Vishvananda Ishaya <vishvananda@yahoo.com> | 2010-08-25 16:44:10 -0700 |
|---|---|---|
| committer | Vishvananda Ishaya <vishvananda@yahoo.com> | 2010-08-25 16:44:10 -0700 |
| commit | a6784ba13821dccfb852cff3ca16f7db30bb3c05 (patch) | |
| tree | e14845200d2d55a9cfb9e9cb63a85f4bb14fd499 /nova/models.py | |
| parent | 35c589d18651f576935bf6d742fcfac00f61433b (diff) | |
| download | nova-a6784ba13821dccfb852cff3ca16f7db30bb3c05.tar.gz nova-a6784ba13821dccfb852cff3ca16f7db30bb3c05.tar.xz nova-a6784ba13821dccfb852cff3ca16f7db30bb3c05.zip | |
network tests pass again
Diffstat (limited to 'nova/models.py')
| -rw-r--r-- | nova/models.py | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/nova/models.py b/nova/models.py index 7ad379814..36d6cf3ad 100644 --- a/nova/models.py +++ b/nova/models.py @@ -19,7 +19,6 @@ """ SQLAlchemy models for nova data """ -import os from sqlalchemy.orm import relationship, backref, validates, exc from sqlalchemy import Table, Column, Integer, String @@ -34,10 +33,6 @@ FLAGS=flags.FLAGS Base = declarative_base() -flags.DEFINE_string('sql_connection', - 'sqlite:///%s/nova.sqlite' % os.path.abspath("./"), - 'connection string for sql database') - class NovaBase(object): __table_args__ = {'mysql_engine':'InnoDB'} __prefix__ = 'none' |
