Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 281133
Collapse All | Expand All

(-)pym/repoman/checks.py (-1 / +1 lines)
Lines 516-522 Link Here
516
		if here_doc_delim is None:
516
		if here_doc_delim is None:
517
			here_doc = _here_doc_re.match(line)
517
			here_doc = _here_doc_re.match(line)
518
			if here_doc is not None:
518
			if here_doc is not None:
519
				here_doc_delim = re.compile('^%s$' % here_doc.group(1))
519
				here_doc_delim = re.compile(r'^\s*%s$' % here_doc.group(1))
520
520
521
		if here_doc_delim is None:
521
		if here_doc_delim is None:
522
			# We're not in a here-document.
522
			# We're not in a here-document.

Return to bug 281133