From: Jakub Libosvar Date: Mon, 14 Sep 2015 09:19:14 +0000 (+0000) Subject: Fix typo in error message in NetcatTester X-Git-Url: https://review.fuel-infra.org/gitweb?a=commitdiff_plain;h=691fae47a4e7468884cb58692ecaf48b9737dae1;p=openstack-build%2Fneutron-build.git Fix typo in error message in NetcatTester Change-Id: Ie00901b1dab6c0c5ad4ec0f0c437426afc60396e --- diff --git a/neutron/tests/common/net_helpers.py b/neutron/tests/common/net_helpers.py index a79c1ff20..520fb359a 100644 --- a/neutron/tests/common/net_helpers.py +++ b/neutron/tests/common/net_helpers.py @@ -314,7 +314,7 @@ class NetcatTester(object): def establish_connection(self): if self._client_process: - raise RuntimeError('%(proto)s connection to $(ip_addr)s is already' + raise RuntimeError('%(proto)s connection to %(ip_addr)s is already' ' established' % {'proto': self.protocol, 'ip_addr': self.address})