From a6784ba13821dccfb852cff3ca16f7db30bb3c05 Mon Sep 17 00:00:00 2001 From: Vishvananda Ishaya Date: Wed, 25 Aug 2010 16:44:10 -0700 Subject: network tests pass again --- nova/models.py | 5 ----- 1 file changed, 5 deletions(-) (limited to 'nova/models.py') 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' -- cgit