index : archinstall32 | |
Archlinux32 installer | gitolite user |
summaryrefslogtreecommitdiff |
-rw-r--r-- | examples/guided.py | 2 |
diff --git a/examples/guided.py b/examples/guided.py index ffbc6226..6f289caa 100644 --- a/examples/guided.py +++ b/examples/guided.py @@ -268,7 +268,7 @@ def perform_installation(mountpoint): if not archinstall.arguments.get('silent'): prompt = str(_('Would you like to chroot into the newly created installation and perform post-installation configuration?')) choice = Menu(prompt, Menu.yes_no(), default_option=Menu.yes()).run() - if choice == Menu.yes(): + if choice.value == Menu.yes(): try: installation.drop_to_shell() except: |