From 1187aa490004ee12ad76f99c04595ea75e7aef15 Mon Sep 17 00:00:00 2001 From: Gary Kotton Date: Tue, 15 May 2012 03:33:04 -0400 Subject: [PATCH] Fix print error for linux bridge bindings bug 1001941 Change-Id: I04d5fad62102d3d7f55ea511a5c14d730d003eb4 --- quantum/plugins/linuxbridge/db/l2network_models.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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) -- 2.45.2