[Date Prev][Date Next] [Thread Prev][Thread Next]
[Thread Index]
[Date Index]
[Author Index]
[PATCH] Don't crash if losetup doesn't know anything about a device. (#662513)
- From: David Lehman <dlehman redhat com>
- To: anaconda-devel-list redhat com
- Subject: [PATCH] Don't crash if losetup doesn't know anything about a device. (#662513)
- Date: Mon, 13 Dec 2010 11:34:04 -0600
---
pyanaconda/storage/devicelibs/loop.py | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/pyanaconda/storage/devicelibs/loop.py b/pyanaconda/storage/devicelibs/loop.py
index e0dc4f7..4ed52e4 100644
--- a/pyanaconda/storage/devicelibs/loop.py
+++ b/pyanaconda/storage/devicelibs/loop.py
@@ -57,7 +57,7 @@ def get_device_path(name):
start = buf.index("(") + 1
end = buf.rindex(")")
path = buf[start:end]
- except IndexError:
+ except (IndexError, ValueError):
path = ""
log.debug("get_device_path(%s) got '%s'" % (name, path))
--
1.7.2.3
[Date Prev][Date Next] [Thread Prev][Thread Next]
[Thread Index]
[Date Index]
[Author Index]