> diff --git a/image.py b/image.py > index 021a0e6..5fece23 100644 > --- a/image.py > +++ b/image.py > @@ -111,6 +111,8 @@ def findIsoImages(path, messageWindow): > def getDiscNums(line): > # get the disc numbers for this disc > nums = line.split(",") > + if nums == ['ALL']: # Treat "ALL" DVD as disc 1 > + return [1] > discNums = [] > for num in nums: > discNums.append(int(num)) As as been mentioned earlier, anaconda expects the comma-separated list of disc numbers. This makes sense given that discNum is a list throughout. However in the interest of airline safety, I'm okay with committing this now to fix those aggravating ISO method bugs and then revisiting this after F9's release. I'd really like to make sure we get our stories straight between the installer and the image generating tools. - Chris _______________________________________________ Anaconda-devel-list mailing list Anaconda-devel-list@xxxxxxxxxx https://www.redhat.com/mailman/listinfo/anaconda-devel-list