Skip to content

Commit

Permalink
Fix missing space and bracket in error message
Browse files Browse the repository at this point in the history
The "missing address scope for router" message was missing a space and a
closing bracket at the end.
  • Loading branch information
sebageek committed Nov 27, 2023
1 parent b7199f9 commit 173d994
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions asr1k_neutron_l3/models/neutron/l3/router.py
Original file line number Diff line number Diff line change
Expand Up @@ -73,8 +73,8 @@ def __init__(self, router_info):
rt = address_scope_config[self.gateway_interface.address_scope]
global_vrf_id = self._to_global_vrf_id(rt)
elif self.gateway_interface.address_scope is not None:
LOG.error("Router %s has a gateway interface, but no address scope was found in config"
"(address scope of router: %s, available scopes: %s",
LOG.error("Router %s has a gateway interface, but no address scope was found in config "
"(address scope of router: %s, available scopes: %s)",
self.router_id, self.gateway_interface.address_scope, list(address_scope_config.keys()))

if not self.router_atts.get('rd'):
Expand Down

0 comments on commit 173d994

Please sign in to comment.