Browse Source

Fix duplicate files

pull/5/head
tech234a 3 years ago
parent
commit
14ab70a0ff
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      export.py

+ 1
- 1
export.py View File

@@ -130,7 +130,7 @@ def subprrun(jobs, mysession):
if '<li id="captions-editor-nav-captions" role="tab" data-state="published" class="published">' in inttext:
jobs.put((langcode, vid, "forceedit-captions"))

if 'id="reject-captions-button"' in inttext or 'id="reject-metadata-button"' in inttext or 'data-state="published"' in inttext or 'title="The video owner already provided subtitles/CC"' in inttext or "forceedit" in mode: #quick way of checking if this page is worth parsing
if 'id="reject-captions-button"' in inttext or 'id="reject-metadata-button"' in inttext or 'data-state="published"' in inttext or 'title="The video owner already provided subtitles/CC"' in inttext: #quick way of checking if this page is worth parsing
parser = MyHTMLParser()
parser.feed(inttext)



Loading…
Cancel
Save