We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 05c3662 commit 5779f14Copy full SHA for 5779f14
src/ugrd/kmod/kmod.py
@@ -1,5 +1,5 @@
1
__author__ = 'desultory'
2
-__version__ = '2.12.1'
+__version__ = '2.12.2'
3
4
from pathlib import Path
5
from subprocess import run
@@ -312,7 +312,7 @@ def process_ignored_module(self, module: str) -> None:
312
if module in self['_kmod_modinfo'] and self['_kmod_modinfo'][module]['filename'] == '(builtin)':
313
self.logger.debug("Removing built-in module from kmod_init: %s" % module)
314
else:
315
- raise ValueError("Cannot ignore external module in kmod_init: %s" % module)
+ raise ValueError("Required module cannot be imported and is not builtin: %s" % module)
316
317
self.logger.debug("Removing ignored kernel module from %s: %s" % (key, module))
318
self[key].remove(module)
0 commit comments