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 3dd7611 commit 5805b6bCopy full SHA for 5805b6b
vmupdate/agent/source/apt/apt_cli.py
@@ -128,7 +128,7 @@ def remove_obsolete_kernels(self) -> ProcessResult:
128
cmd = [self.package_manager, "remove", "-y", *obsoletes]
129
result = self.run_cmd(cmd, realtime=False)
130
else:
131
- result = ProcessResult.OK
+ result = ProcessResult(EXIT.OK)
132
133
result.code = EXIT.ERR_VM_CLEANUP if result.code != 0 else 0
134
- return result
+ return result
0 commit comments