[lorax 2/4] Sort modules in module-info by modname, not modtype

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



---
 src/pylorax/images.py |    9 +++------
 1 files changed, 3 insertions(+), 6 deletions(-)

diff --git a/src/pylorax/images.py b/src/pylorax/images.py
index 72ccee9..ab8e7cd 100644
--- a/src/pylorax/images.py
+++ b/src/pylorax/images.py
@@ -239,8 +239,6 @@ export PS1 PATH
         for modtype, fname in {"scsi": "modules.block",
                                "eth": "modules.networking"}.items():
 
-            modlist[modtype] = {}
-
             fname = os.path.join(dst_moddir, fname)
             with open(fname, "r") as f:
                 for line in f:
@@ -268,15 +266,14 @@ export PS1 PATH
 
                     info = '{0}\n\t{1}\n\t"{2}"\n'
                     info = info.format(modname, modtype, desc)
-                    modlist[modtype][modname] = info
+                    modlist[modname] = info
 
         # write the source module-info
         moduleinfo = os.path.join(self.workdir, self.const.MODULEINFO)
         with open(moduleinfo, "w") as f:
             f.write("Version 0\n")
-            for modtype, modules in modlist.items():
-                for modname in sorted(modules.keys()):
-                    f.write(modlist[modtype][modname])
+            for modname in sorted(modlist.keys()):
+                f.write(modlist[modname])
 
         # create the final module-info
         dst = os.path.join(os.path.dirname(dst_moddir), self.const.MODULEINFO)
-- 
1.6.6

_______________________________________________
Anaconda-devel-list mailing list
Anaconda-devel-list@xxxxxxxxxx
https://www.redhat.com/mailman/listinfo/anaconda-devel-list

[Index of Archives]     [Kickstart]     [Fedora Users]     [Fedora Legacy List]     [Fedora Maintainers]     [Fedora Desktop]     [Fedora SELinux]     [Big List of Linux Books]     [Yosemite News]     [Yosemite Photos]     [KDE Users]     [Fedora Tools]
  Powered by Linux