diff options
| author | Josh Gachnang <josh@pcsforeducation.com> | 2014-12-15 16:40:35 -0800 |
|---|---|---|
| committer | Josh Gachnang <josh@pcsforeducation.com> | 2014-12-15 16:40:35 -0800 |
| commit | 88c2bca93cc06478cd9a1f1830496a0f5dce7dd0 (patch) | |
| tree | 547fee6e66938a3779b93f70afb37580a1f63b0b /ironic_python_agent/netutils.py | |
| parent | 86d4b41709548cb304ab9cc0b627b39449eef121 (diff) | |
| download | ironic-python-agent-88c2bca93cc06478cd9a1f1830496a0f5dce7dd0.tar.gz | |
Fix missing string format symbol
Change-Id: I94ec7299a5c918b3569e1e6f64a9bfa0c70d28d4
Diffstat (limited to 'ironic_python_agent/netutils.py')
| -rw-r--r-- | ironic_python_agent/netutils.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ironic_python_agent/netutils.py b/ironic_python_agent/netutils.py index 6ddc95cf..447565ac 100644 --- a/ironic_python_agent/netutils.py +++ b/ironic_python_agent/netutils.py @@ -68,7 +68,7 @@ class RawPromiscuousSockets(object): ifr.ifr_flags |= IFF_PROMISC fcntl.ioctl(sock.fileno(), SIOCSIFFLAGS, ifr) # S for Set # Bind the socket so it can be used - LOG.debug('Binding interface %(interface) for protocol ' + LOG.debug('Binding interface %(interface)s for protocol ' '%(proto)s: %s', {'interface': interface_name, 'proto': self.protocol}) sock.bind((interface_name, self.protocol)) |
