PlaylistsTrance
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.