summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCole Robinson <crobinso@redhat.com>2018-01-27 16:27:00 -0500
committerCole Robinson <crobinso@redhat.com>2018-01-27 16:27:41 -0500
commitcb6fc2021037f41d6fcb4ea9b520906bc0a97ab9 (patch)
treebfa882306bc097a22889dba397f5c567f7e15e33
parentbcdf7c892215a593f1144dc400c97c3f278b54b2 (diff)
downloadvirt-manager-cb6fc2021037f41d6fcb4ea9b520906bc0a97ab9.tar.gz
cli: Drop python2ism with OSError
-rw-r--r--virtinst/cli.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/virtinst/cli.py b/virtinst/cli.py
index ba74d6bc..4d13e659 100644
--- a/virtinst/cli.py
+++ b/virtinst/cli.py
@@ -476,7 +476,7 @@ def connect_console(guest, consolecb, wait):
try:
os.waitpid(child, 0)
except OSError as e:
- logging.debug("waitpid: %s: %s", e.errno, e.message)
+ logging.debug("waitpid error: %s", e)
def get_console_cb(guest):