Browse 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 8 years ago
parent
commit
49f7bdaf0d
1 changed files with 1 additions and 2 deletions
  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