libudev bumped the version number up to /usr/lib64/libudev.so.1 Also, change the error message from None. --- pyanaconda/pyudev.py | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/pyanaconda/pyudev.py b/pyanaconda/pyudev.py index 4b5d586..705b93d 100644 --- a/pyanaconda/pyudev.py +++ b/pyanaconda/pyudev.py @@ -31,10 +31,12 @@ def find_library(name, somajor=0): return None # find the udev library -libudev = find_library(name="udev", somajor=0) +name = "udev" +somajor = 1 +libudev = find_library(name=name, somajor=somajor) if not libudev or not os.path.exists(libudev): - raise ImportError, "No library named %s" % libudev + raise ImportError, "No library named %s.%d" % (name, somajor) # load the udev library libudev = CDLL(libudev) -- 1.7.10.1 _______________________________________________ Anaconda-devel-list mailing list Anaconda-devel-list@xxxxxxxxxx https://www.redhat.com/mailman/listinfo/anaconda-devel-list