Navigation Menu

Skip to content

Commit

Permalink
Fix print error for linux bridge bindings
Browse files Browse the repository at this point in the history
bug 1001941

Change-Id: I921701c0941a62d995dedf0ce3312e5b8e35cd5b
  • Loading branch information
Gary Kotton committed Jun 11, 2012
1 parent b226e0c commit 98f9c64
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions quantum/plugins/linuxbridge/db/l2network_models.py
Expand Up @@ -53,5 +53,4 @@ def __init__(self, vlan_id, network_id):
self.network_id = network_id

def __repr__(self):
return "<VlanBinding(%d,%s,%s)>" % \
(self.vlan_id, self.network_id)
return "<VlanBinding(%d,%s)>" % (self.vlan_id, self.network_id)

0 comments on commit 98f9c64

Please sign in to comment.