Fix broken unit tests for python 3

Commit 465d22180e9e0f8b33d9610eaf1594a419bd624a broke the
plugin.

Change-Id: Ief4e33c9f45188c3572b0543c444a3a950d88823
This commit is contained in:
Gary Kotton 2016-09-17 09:41:32 -07:00
parent 28fa681d9c
commit 1bff688fb0

View File

@ -12,7 +12,6 @@
# License for the specific language governing permissions and limitations
# under the License.
from neutron.db import db_base_plugin_v2
from oslo_log import log as logging
from oslo_utils import excutils
@ -30,7 +29,7 @@ FWAAS_ALLOW = "allow"
FWAAS_DENY = "deny"
class EdgeFirewallDriver(db_base_plugin_v2.NeutronDbPluginV2):
class EdgeFirewallDriver(object):
"""Implementation of driver APIs for
Edge Firewall feature configuration
"""