Skip to content

Commit cd924de

Browse files
committed
fix pasted text
Signed-off-by: Zen <[email protected]>
1 parent 9f4fea3 commit cd924de

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/ugrd/kmod/kmod.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ def _get_kmod_info(self, module: str):
8484
module_info['softdep'] = line.split()[2::2]
8585
elif line.startswith('firmware:'):
8686
# Firmware is a list, so append to it, making sure it exists first
87-
oh wait i think i imssed if 'firmware' not in module_info:
87+
if 'firmware' not in module_info:
8888
module_info['firmware'] = []
8989
module_info['firmware'] += line.split()[1:]
9090

@@ -208,6 +208,7 @@ def _process_kmod_dependencies(self, kmod: str) -> None:
208208
_process_kmod_dependencies(self, dependency)
209209
except BuiltinModuleError as e:
210210
self.logger.debug(e)
211+
continue
211212
self['kernel_modules'] = dependency
212213

213214
if self['_kmod_modinfo'][kmod]['filename'] == '(builtin)':

0 commit comments

Comments
 (0)