]> jfr.im git - yt-dlp.git/commitdiff
flake8 hotfix
authorUnknown <redacted>
Thu, 3 Sep 2020 03:38:02 +0000 (05:38 +0200)
committerUnknown <redacted>
Thu, 3 Sep 2020 03:38:02 +0000 (05:38 +0200)
devscripts/make_contributing.py
devscripts/make_readme.py

index 5a068c90ca45733bc4acef050f0be3bc74563644..80426fb0ace3f76ed2158ca7dd0cef0b1cef1358 100755 (executable)
@@ -1,9 +1,9 @@
 #!/usr/bin/env python
 from __future__ import unicode_literals
 
-import io
+import io
 import optparse
-import re
+import re
 
 
 def main():
@@ -11,23 +11,23 @@ def main():
     options, args = parser.parse_args()
     if len(args) != 2:
         parser.error('Expected an input and an output filename')
-'''
-    infile, outfile = args
+
+
+"""     infile, outfile = args
 
     with io.open(infile, encoding='utf-8') as inf:
         readme = inf.read()
 
-    bug_text = re.search(
-        r'(?s)#\s*BUGS\s*[^\n]*\s*(.*?)#\s*COPYRIGHT', readme).group(1)
-    dev_text = re.search(
-        r'(?s)(#\s*DEVELOPER INSTRUCTIONS.*?)#\s*EMBEDDING youtube-dlc',
-        readme).group(1)
+    bug_text = re.search( """
+# r'(?s)#\s*BUGS\s*[^\n]*\s*(.*?)#\s*COPYRIGHT', readme).group(1)
+# dev_text = re.search(
+# r'(?s)(#\s*DEVELOPER INSTRUCTIONS.*?)#\s*EMBEDDING youtube-dlc',
+"""         readme).group(1)
 
     out = bug_text + dev_text
 
     with io.open(outfile, 'w', encoding='utf-8') as outf:
-        outf.write(out)
-'''
+        outf.write(out) """
 
 if __name__ == '__main__':
     main()
index dc3aa9a7446051529f3b86fc276cbde3c17eb42c..73f203582aea4ef1f7f31576cfd11b50dc96ebfe 100755 (executable)
@@ -14,7 +14,7 @@
     oldreadme = f.read()
 
 header = oldreadme[:oldreadme.index('# OPTIONS')]
-#footer = oldreadme[oldreadme.index('# CONFIGURATION'):]
+# footer = oldreadme[oldreadme.index('# CONFIGURATION'):]
 
 options = helptext[helptext.index('  General Options:') + 19:]
 options = re.sub(r'(?m)^  (\w.+)$', r'## \1', options)
@@ -23,4 +23,4 @@
 with io.open(README_FILE, 'w', encoding='utf-8') as f:
     f.write(header)
     f.write(options)
-    #f.write(footer)
+    # f.write(footer)