View | Details | Raw Unified | Return to bug 32107
Collapse All | Expand All

(-)umc/python/join/__init__.py (-2 / +6 lines)
 Lines 285-292    Link Here 
285
			match = RE_NOT_CONFIGURED.match(line)
285
			match = RE_NOT_CONFIGURED.match(line)
286
			if match:
286
			if match:
287
				name = match.groups()[0]
287
				name = match.groups()[0]
288
				files[name]['configured'] = False
288
				if name in files:
289
				files[name]['status'] = '0:%s' % (files[name]['prio'])
289
					files[name]['configured'] = False
290
					files[name]['status'] = '0:%s' % (files[name]['prio'])
291
				else:
292
					# The joinscripts does not exists in the filesystem or has a invalid name
293
					MODULE.error('not existing join script or join script with invalid name meantioned in status file: %r' % (name))
290
294
291
		return files.values()
295
		return files.values()
292
296

Return to bug 32107