Merge pull request #6554 from reddraggone9/readme-line-numbers
authorSergey M. <dstftw@gmail.com>
Fri, 14 Aug 2015 16:15:13 +0000 (22:15 +0600)
committerSergey M. <dstftw@gmail.com>
Fri, 14 Aug 2015 16:15:13 +0000 (22:15 +0600)
Updated line numbers in the fragment portion of README links.

1  2 
README.md

diff --combined README.md
index 8fa402ee28a93b2485c4a81d4c4d73fb5f891272,e91119d847422db9869b5f54f70d587a94d1a557..e52cdb94159173c89bec6a11d6e3d506a0f9b45a
+++ b/README.md
@@@ -272,7 -272,6 +272,7 @@@ The `-o` option allows users to indicat
   - `autonumber`: The sequence will be replaced by a five-digit number that will be increased with each download, starting at zero.
   - `playlist`: The name or the id of the playlist that contains the video.
   - `playlist_index`: The index of the video in the playlist, a five-digit number.
 + - `format_id`: The sequence will be replaced by the format code specified by `--format`.
  
  The current default template is `%(title)s-%(id)s.%(ext)s`.
  
@@@ -545,7 -544,7 +545,7 @@@ If you want to add support for a new si
      ```
  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 be then be named `TestDownload.test_YourExtractor`, `TestDownload.test_YourExtractor_1`, `TestDownload.test_YourExtractor_2`, etc.
- 7. Have a look at [`youtube_dl/common/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 return](https://github.com/rg3/youtube-dl/blob/master/youtube_dl/extractor/common.py#L38). Add tests and code for as many as you want.
+ 7. Have a look at [`youtube_dl/common/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 return](https://github.com/rg3/youtube-dl/blob/master/youtube_dl/extractor/common.py#L62). 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:
  
@@@ -573,7 -572,7 +573,7 @@@ with youtube_dl.YoutubeDL(ydl_opts) as 
      ydl.download(['http://www.youtube.com/watch?v=BaW_jenozKc'])
  ```
  
- Most likely, you'll want to use various options. For a list of what can be done, have a look at [youtube_dl/YoutubeDL.py](https://github.com/rg3/youtube-dl/blob/master/youtube_dl/YoutubeDL.py#L69). For a start, if you want to intercept youtube-dl's output, set a `logger` object.
+ Most likely, you'll want to use various options. For a list of what can be done, have a look at [youtube_dl/YoutubeDL.py](https://github.com/rg3/youtube-dl/blob/master/youtube_dl/YoutubeDL.py#L92). For a start, if you want to intercept youtube-dl's output, set a `logger` object.
  
  Here's a more complete example of a program that outputs only errors (and a short message after the download is finished), and downloads/converts the video to an mp3 file: