build.py: Use pythonic class name

This commit is contained in:
Mykola Grymalyuk
2022-11-12 17:14:39 -07:00
parent 21c40277bb
commit 55061bc86d
5 changed files with 6 additions and 12 deletions
+1 -1
View File
@@ -628,7 +628,7 @@ class wx_python_gui:
while self.is_unpack_finished() is False:
time.sleep(0.1)
build.BuildOpenCore(self.constants.custom_model or self.constants.computer.real_model, self.constants).build_opencore()
build.build_opencore(self.constants.custom_model or self.constants.computer.real_model, self.constants).build_opencore()
# Once finished, change build_opencore button to "Install OpenCore"
self.build_opencore.SetLabel("🔩 Install OpenCore")
self.build_opencore.Bind(wx.EVT_BUTTON, self.install_menu)