From: Gary Kotton Date: Tue, 15 May 2012 07:33:04 +0000 (-0400) Subject: Fix print error for linux bridge bindings X-Git-Url: https://review.fuel-infra.org/gitweb?a=commitdiff_plain;h=1187aa490004ee12ad76f99c04595ea75e7aef15;p=openstack-build%2Fneutron-build.git Fix print error for linux bridge bindings bug 1001941 Change-Id: I04d5fad62102d3d7f55ea511a5c14d730d003eb4 --- diff --git a/quantum/plugins/linuxbridge/db/l2network_models.py b/quantum/plugins/linuxbridge/db/l2network_models.py index caf9657cd..7a280a587 100644 --- a/quantum/plugins/linuxbridge/db/l2network_models.py +++ b/quantum/plugins/linuxbridge/db/l2network_models.py @@ -52,4 +52,4 @@ class VlanBinding(BASE, QuantumBase): self.network_id = network_id def __repr__(self): - return "" % (self.vlan_id, self.network_id) + return "" % (self.vlan_id, self.network_id)