# Copyright 2002-2007 Gentoo Foundation; Distributed under the GPL v2
# $Id: $
+ 29 Aug 2007; Chris Gianelloni <wolf31o2@gentoo.org> catalyst,
+ modules/generic_stage_target.py:
+ Fixed livecd/volid by removing the string.join() from set_iso_volume_id()
+ for bug #188099. This is catalyst 2.0.5_pre2 for testing.
+
29 Aug 2007; Chris Gianelloni <wolf31o2@gentoo.org> catalyst,
targets/support/rc-update.sh:
Added support for the newer versions of splashutils which use fbcondecor as
import pdb
__maintainer__="Chris Gianelloni <wolf31o2@gentoo.org>"
-__version__="2.0.5_pre1"
+__version__="2.0.5_pre2"
conf_values={}
def set_iso_volume_id(self):
if self.settings.has_key(self.settings["spec_prefix"]+"/volid"):
- self.settings["iso_volume_id"] = string.join(self.settings[self.settings["spec_prefix"]+"/volid"])
+ self.settings["iso_volume_id"] = self.settings[self.settings["spec_prefix"]+"/volid"]
if len(self.settings["iso_volume_id"])>32:
raise CatalystError,"ISO VOLUME ID: volid must not exceed 32 characters."
else: