pep8 cleanup, restore defaults

This commit is contained in:
Dan Wendlandt 2011-08-05 23:06:20 -07:00
parent b78958b0cc
commit 132667244b
3 changed files with 3 additions and 1 deletions

View File

@ -127,6 +127,7 @@ def network_rename(net_id, tenant_id, new_name):
session.flush()
return net
def network_destroy(net_id):
session = get_session()
try:

View File

@ -1,3 +1,3 @@
[PLUGIN]
# Quantum plugin provider module
provider = quantum.plugins.openvswitch.ovs_quantum_plugin.OVSQuantumPlugin
provider = quantum.plugins.SamplePlugin.FakePlugin

View File

@ -35,6 +35,7 @@ CONF_FILE = "ovs_quantum_plugin.ini"
LOG.basicConfig(level=LOG.WARN)
LOG.getLogger("ovs_quantum_plugin")
def find_config(basepath):
for root, dirs, files in os.walk(basepath):
if CONF_FILE in files: