Skip to content

Commit

Permalink
Fix the continue function being passed incorrectly
Browse files Browse the repository at this point in the history
  • Loading branch information
muhdsalm authored and mirkobrombin committed Feb 19, 2024
1 parent c9d33e8 commit 7a4e18f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion vanilla_installer/windows/window_ram.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ def __init__(self, **kwargs):
super().__init__(**kwargs)

self.description_label.set_label(_("Your computer does have enough RAM to run %s (minimum 4GB)") % RecipeLoader().raw['distro_name'])
self.btn_continue.connect("clicked", self.__continue())
self.btn_continue.connect("clicked", self.__continue)

def __continue(self, btn):
subprocess.Popen("IGNORE_RAM=1 vanilla-installer", shell=True)
Expand Down

0 comments on commit 7a4e18f

Please sign in to comment.