Skip to content

Commit

Permalink
Merge "Fixes Hyper-V agent unsopported network_type issue"
Browse files Browse the repository at this point in the history
  • Loading branch information
Jenkins authored and openstack-gerrit committed Sep 13, 2013
2 parents 23abacf + b94c88f commit 932e5b5
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions neutron/plugins/hyperv/agent/hyperv_neutron_agent.py
Expand Up @@ -169,9 +169,9 @@ def _provision_network(self, port_id,
pass
else:
raise utils.HyperVException(
_("Cannot provision unknown network type %(network_type)s "
"for network %(net_uuid)s"),
dict(network_type=network_type, net_uuid=net_uuid))
msg=(_("Cannot provision unknown network type %(network_type)s"
" for network %(net_uuid)s") %
dict(network_type=network_type, net_uuid=net_uuid)))

map = {
'network_type': network_type,
Expand Down

0 comments on commit 932e5b5

Please sign in to comment.