about summary refs log tree commit diff
path: root/README.md
diff options
context:
space:
mode:
authorSergey M <dstftw@gmail.com>2016-02-23 05:03:57 +0600
committerSergey M <dstftw@gmail.com>2016-02-23 05:03:57 +0600
commit9b012728324737977e875ddd623fa4c6852e86a9 (patch)
treebb079cf92c861e449fd8dd9ceaca42aa4ff7b884 /README.md
parent58525c94d547be1c8167d16c298bdd75506db328 (diff)
downloadyoutube-dl-9b012728324737977e875ddd623fa4c6852e86a9.tar.gz
youtube-dl-9b012728324737977e875ddd623fa4c6852e86a9.tar.xz
youtube-dl-9b012728324737977e875ddd623fa4c6852e86a9.zip
[README.md] Update link to extractor metafields
Diffstat (limited to 'README.md')
-rw-r--r--README.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/README.md b/README.md
index 60635d5df..48b76b1ec 100644
--- a/README.md
+++ b/README.md
@@ -880,7 +880,7 @@ After you have ensured this site is distributing it's content legally, you can f
     ```
 5. Add an import in [`youtube_dl/extractor/__init__.py`](https://github.com/rg3/youtube-dl/blob/master/youtube_dl/extractor/__init__.py).
 6. Run `python test/test_download.py TestDownload.test_YourExtractor`. This *should fail* at first, but you can continually re-run it until you're done. If you decide to add more than one test, then rename ``_TEST`` to ``_TESTS`` and make it into a list of dictionaries. The tests will then be named `TestDownload.test_YourExtractor`, `TestDownload.test_YourExtractor_1`, `TestDownload.test_YourExtractor_2`, etc.
-7. Have a look at [`youtube_dl/extractor/common.py`](https://github.com/rg3/youtube-dl/blob/master/youtube_dl/extractor/common.py) for possible helper methods and a [detailed description of what your extractor should and may return](https://github.com/rg3/youtube-dl/blob/master/youtube_dl/extractor/common.py#L62-L200). Add tests and code for as many as you want.
+7. Have a look at [`youtube_dl/extractor/common.py`](https://github.com/rg3/youtube-dl/blob/master/youtube_dl/extractor/common.py) for possible helper methods and a [detailed description of what your extractor should and may return](https://github.com/rg3/youtube-dl/blob/58525c94d547be1c8167d16c298bdd75506db328/youtube_dl/extractor/common.py#L68-L226). Add tests and code for as many as you want.
 8. If you can, check the code with [flake8](https://pypi.python.org/pypi/flake8).
 9. When the tests pass, [add](http://git-scm.com/docs/git-add) the new files and [commit](http://git-scm.com/docs/git-commit) them and [push](http://git-scm.com/docs/git-push) the result, like this: