projects
/
portage.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
6518754
)
Use r'' for regex.
author
Zac Medico
<zmedico@gentoo.org>
Wed, 12 Aug 2009 08:48:19 +0000
(08:48 -0000)
committer
Zac Medico
<zmedico@gentoo.org>
Wed, 12 Aug 2009 08:48:19 +0000
(08:48 -0000)
svn path=/main/trunk/; revision=14013
pym/repoman/checks.py
patch
|
blob
|
history
diff --git
a/pym/repoman/checks.py
b/pym/repoman/checks.py
index 4650e7d509da1d3a64d76d7fab4f0c11329765b6..76425a817756a7b63bf15dfc6b9e5c9b0ff8cf98 100644
(file)
--- a/
pym/repoman/checks.py
+++ b/
pym/repoman/checks.py
@@
-516,7
+516,7
@@
def run_checks(contents, pkg):
if here_doc_delim is None:
here_doc = _here_doc_re.match(line)
if here_doc is not None:
- here_doc_delim = re.compile('^\s*%s$' % here_doc.group(1))
+ here_doc_delim = re.compile(
r
'^\s*%s$' % here_doc.group(1))
if here_doc_delim is None:
# We're not in a here-document.