check: fix for searching image:, brut: in header
This commit is contained in:
parent
49fe9bcc91
commit
418254a45f
|
@ -528,6 +528,7 @@ def check_content(post_bottom):
|
|||
|
||||
# Check for _image:NAME from content in header
|
||||
#---------------------------------------------
|
||||
print(article_header)
|
||||
for ln, line in enumerate(post_bottom):
|
||||
for tag in tyto.content_tags:
|
||||
htag_found = False
|
||||
|
@ -535,9 +536,10 @@ def check_content(post_bottom):
|
|||
tag_id = line.rsplit(':', 1)[1].rsplit(' ')[0]
|
||||
htag = tag[1: len(tag)]
|
||||
|
||||
if not re.search(r'^%s\s+\b%s\b|%s\b%s\b'%(
|
||||
rexp = r'|%s\s+\b%s\b|%s\b%s\b'%(
|
||||
htag, tag_id, htag, tag_id
|
||||
), article_header):
|
||||
)
|
||||
if not re.search(rexp, article_header):
|
||||
tyto.exiting("10", "%s %s"%(htag, tag_id), True)
|
||||
|
||||
|
||||
|
|
Loading…
Reference in New Issue