VirtualBox

Changeset 61376 in vbox for trunk/src/VBox/Main/glue


Ignore:
Timestamp:
Jun 1, 2016 2:17:30 PM (9 years ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
107684
Message:

Main/glue/vboxapi.py: fix API termination issue (double deinit, once by the API client and once by the module when the garbage collector kicks in) and some forgotten print_ uses from the time before python 2.6 was the minimum supported version

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/Main/glue/vboxapi.py

    r60463 r61376  
    993993            self.vbox = self.platform.getVirtualBox()
    994994        except NameError:
    995             print_("Installation problem: check that appropriate libs in place")
     995            print("Installation problem: check that appropriate libs in place")
    996996            traceback.print_exc()
    997997            raise
    998998        except Exception:
    999999            _, e, _ = sys.exc_info()
    1000             print_("init exception: ", e)
     1000            print("init exception: ", e)
    10011001            traceback.print_exc()
    10021002            if self.remote:
     
    10741074        Do not access it after calling this method.
    10751075        """
    1076         if hasattr(self, "vbox"):
     1076        if hasattr(self, "vbox") and self.vbox is not None:
    10771077            del self.vbox
    10781078            self.vbox = None
    1079         if hasattr(self, "platform"):
     1079        if hasattr(self, "platform") and self.platform is not None:
    10801080            self.platform.deinit()
    10811081            self.platform = None
Note: See TracChangeset for help on using the changeset viewer.

© 2025 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette