Explorar el Código

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 hace 8 años
padre
commit
49f7bdaf0d
Se han modificado 1 ficheros con 1 adiciones y 2 borrados
  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