Parcourir la source

a-o-i: Do not display version number in quick installer

As we now require the version of the installer to match what will be installed in
the target environment and to avoid any potential confusion, remove the version
number from the variant choice question.
Samuel Munilla il y a 8 ans
Parent
commit
49f7bdaf0d
1 fichiers modifiés avec 1 ajouts et 2 suppressions
  1. 1 2
      utils/src/ooinstall/cli_installer.py

+ 1 - 2
utils/src/ooinstall/cli_installer.py

@@ -483,8 +483,7 @@ def get_variant_and_version(multi_master=False):
     i = 1
     combos = get_variant_version_combos()
     for (variant, version) in combos:
-        message = "%s\n(%s) %s %s" % (message, i, variant.description,
-                                      version.name)
+        message = "%s\n(%s) %s" % (message, i, variant.description)
         i = i + 1
     message = "%s\n" % message