Ah, you're right. I didn't check that - all I saw was the error log when
I tested it that showed it as "Ubuntu Studio". So I took a look at the
code, and this is the reason why (it replaces the '-' with ' ' in the
name):

    def parse_isoinfo(self, info):
        '''
        Parses the file within the ISO
        that contains metadata on the iso
        e.g. .disk/info in Ubuntu
        Ubuntu 9.04 "Jaunty Jackalope" - Alpha i386 (20090106)
        Ubuntu 9.04 "Jaunty Jackalope" - Alpha i386 (20090106.1)
        Ubuntu Split Name 9.04.1 "Jaunty Jackalope" - Final Release i386 
(20090106.2)
        '''
        log.debug("  parsing info from str=%s" % info)
        if not info:
            return
        info = disk_info_re.match(info)
        name = info.group('name').replace('-', ' ')
        version = info.group('version')
        subversion = info.group('subversion')
        arch = info.group('arch')
        log.debug("  parsed info=%s" % info.groupdict())
        return name, version, subversion, arch

-- 
You received this bug notification because you are a member of Ubuntu
Studio Testers, which is subscribed to Ubuntu Studio.
https://bugs.launchpad.net/bugs/1070682

Title:
  wubi and ubuntu studio

Status in Ubuntu Studio Project:
  Fix Released
Status in Wubi, Windows Ubuntu Installer:
  Fix Released

Bug description:
  I download the ubuntustudio from the link that was suggested and there was a 
wubi.exe windows installer included.  But when i execute the file there is 
still only Ubuntu, Kubuntu, Mythbuntu, Edubuntu and Lubuntu that are available 
in the list to install.
  Any other ideas would be appreciated.

  Note: Ubuntu studio also does not have the package lupin-support
  installed. This is required by Wubi in order to generate the grub menu
  entries to boot from a loop-mounted install.

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntustudio/+bug/1070682/+subscriptions

_______________________________________________
Mailing list: https://launchpad.net/~ubuntustudio-testers
Post to     : [email protected]
Unsubscribe : https://launchpad.net/~ubuntustudio-testers
More help   : https://help.launchpad.net/ListHelp

Reply via email to