nathom / streamrip

A scriptable music downloader for Qobuz, Tidal, SoundCloud, and Deezer
GNU General Public License v3.0
2.35k stars 209 forks source link

Fix bug report template `-vvv` option #617

Closed disconnect78 closed 5 months ago

disconnect78 commented 5 months ago

The bug report template instructs users to append the -vvv option to get full debug logs. However as of v2 this now results in an error for some commands:

$ rip url https://example.com -vvv                                       
Usage: rip url [OPTIONS] URLS...
Try 'rip url --help' for help.

Error: No such option: -v

Instead the option should come directly after the rip command:

$ rip -vvv url https://example.com
[10:44:21] DEBUG    Showing all debug logs                                      cli.py:102
Found invalid url https://example.com, skipping.
           DEBUG    Removing dirs set()                                      artwork.py:19

The most straightforward way to fix this is to amend the template to direct users to put the option in the correct place.

nathom commented 5 months ago

Thanks!