PlaylistsTrance

Results 26 comments of PlaylistsTrance

Hey, thanks for adding it to the constructor, but it looks like you forgot to use the constructor variables to set the class variables, see [line 123](https://github.com/polm/cutlet/blob/8c465ac253f82092cd0e09893d204e327624b596/cutlet/cutlet.py#L123). In the class,...

In `models.py`, replace line 32: `block_num, conf = int(block_num), int(conf)` with `block_num, conf = int(block_num), int(float(conf))`. The issue is that `conf` is a string of a float value, which `int()`...

Maybe it would be possible to suppress exceptions until after the first 2 steps are completed? Not sure if that is an elegant solution.

I was wondering if it was a bug! Alright, I'll use `\d\d\d\d` for now. Thanks!

Does this also fix `--parse-metadata "description: · (?P.+?)( · |\n)` from not working when put in an alias? Currently it says `[MetadataParser] Could not interpret 'description' as ' · (?P.+?)(...

Thanks, my .conf file was UTF-8 no BOM. Including BOM fixed it.

Sounds more like a problem with Imgur than this component. I recommend adding some logic to resize cover art since there's no reason to have larger than 100x100 images for...

I think lines that follow the format [field: value] should always be hidden. For files that have both synced and unsynced lines, I think there should be a toggle to...

I use a Python script that uploads to catbox.moe, modified a bit to support saving errors to a log file and automatically resize large images to 100x100. The command I...

Nope, just what I posted. Actually, you don't even need to find the whole path of your Python install, the command could just be `py C:\path\to\foobar_cover_upload.py`, after having installed requests...