Changeset 61376 in vbox for trunk/src/VBox/Main/glue
- Timestamp:
- Jun 1, 2016 2:17:30 PM (9 years ago)
- svn:sync-xref-src-repo-rev:
- 107684
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/glue/vboxapi.py
r60463 r61376 993 993 self.vbox = self.platform.getVirtualBox() 994 994 except NameError: 995 print _("Installation problem: check that appropriate libs in place")995 print("Installation problem: check that appropriate libs in place") 996 996 traceback.print_exc() 997 997 raise 998 998 except Exception: 999 999 _, e, _ = sys.exc_info() 1000 print _("init exception: ", e)1000 print("init exception: ", e) 1001 1001 traceback.print_exc() 1002 1002 if self.remote: … … 1074 1074 Do not access it after calling this method. 1075 1075 """ 1076 if hasattr(self, "vbox") :1076 if hasattr(self, "vbox") and self.vbox is not None: 1077 1077 del self.vbox 1078 1078 self.vbox = None 1079 if hasattr(self, "platform") :1079 if hasattr(self, "platform") and self.platform is not None: 1080 1080 self.platform.deinit() 1081 1081 self.platform = None
Note:
See TracChangeset
for help on using the changeset viewer.