Description of problem: See https://bugzilla.redhat.com/bugzilla/show_bug.cgi?id=214037#c10 Version-Release number of selected component (if applicable): 0.7.34-1 Fix is: --- foomatic.py 7 Nov 2006 13:43:18 -0000 1.37 +++ foomatic.py 7 Nov 2006 17:13:55 -0000 @@ -748,2 +748,5 @@ mdls = self.makes[mfg] + # Handle bogus HPLIP Device IDs + if mdl.startswith (mfg + ' '): + mdl = mdl[len (mfg) + 1:] if mdls.has_key (mdl):
Fixed in update: system-config-printer-0.7.35-1.fc6
Thanks, this did indeed fix the parsing of the manufacturer and device :)