TrivialFix: Remove extra space from log

While looking at the file, I noticed the log had an extra space in
it. This commit removes it.

Change-Id: I1262fe9a9fd0c1ce7d8a22f9a7e4f0b8372b687f
This commit is contained in:
Trevor McCasland 2017-03-16 09:34:04 -05:00
parent fe4559f475
commit 4903c38bbc
1 changed files with 1 additions and 1 deletions

View File

@ -149,7 +149,7 @@ class VlanTypeDriver(helpers.SegmentTypeDriver):
if physical_network:
if physical_network not in self.network_vlan_ranges:
msg = (_("physical_network '%s' unknown "
" for VLAN provider network") % physical_network)
"for VLAN provider network") % physical_network)
raise exc.InvalidInput(error_message=msg)
if segmentation_id:
if not plugin_utils.is_valid_vlan_tag(segmentation_id):