2
0
mirror of https://github.com/openvswitch/ovs synced 2025-08-31 06:15:47 +00:00

ovs.daemon: Add missing format string argument.

Found by pychecker.
This commit is contained in:
Ben Pfaff
2011-08-24 17:01:14 -07:00
parent 0003748f58
commit c6b24dd7cd

View File

@@ -421,7 +421,7 @@ def __read_pidfile(pidfile, delete_if_stale):
try:
os.unlink(pidfile)
except IOError, e:
logging.warning("%s: failed to delete stale pidfile"
logging.warning("%s: failed to delete stale pidfile (%s)"
% (pidfile, e.strerror))
return -e.errno
else: