Changeset 103072 in vbox for trunk/src/VBox/Main/glue
- Timestamp:
- Jan 25, 2024 5:45:27 PM (11 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/glue/python/vboxapi.py
r103054 r103072 348 348 Returns the COM status code from the VBox API given exception. 349 349 """ 350 r aise AttributeError350 return None 351 351 352 352 def xcptIsDeadInterface(self, _oXcpt): … … 367 367 """ 368 368 try: 369 hrXcpt = self.xcptGetStatus(oXcpt) 369 hrXcpt = self.xcptGetStatus(oXcpt) # pylint: disable=assignment-from-none 370 370 except AttributeError: 371 371 return False
Note:
See TracChangeset
for help on using the changeset viewer.