dbr/Ben

Results 190 comments of dbr/Ben

> Yes, I used unicodedata.normalize to compare the unicode strings Oh, I think this is a bad idea. It's likely to hide legitimate unicode problems... I'm pretty sure the tests...

Oh, I've been using tvnamer with your changes for a while, and it's working nicely for the most part. Thanks hugely for all your effort! I've pulled your current work...

> results could be sorted by similarity ratio (for example difflib.SequenceMatcher.ratio() or difflib.SequenceMatcher.quick_ratio(), see this) instead of current autoselecting of first found item The API returns the series in what...

Most flexible way would be to have a `custom_patterns = {'pattern': '...', order: '...'}` or something, but that seems a bit clunky Instead maybe just: 1. A `custom_patterns` config option,...

I think this is caused by [this bug](http://dbr.lighthouseapp.com/projects/36049/tickets/108-expose-consistent-data-for-episodes#ticket-108-2) - certain episode types don't get all episode data - the Anime-episode-info class doesn't currently get season number I'll try and fix...

There's not currently a way to do this, as each type of parsed episode only exposes the "relevant" data (e.g the `NoSeasonEpisodeInfo` class only exposed series name and episode number),...

master branch should be good to rebase with if you have the time - I've also fixed up the integration tests which were failing, so the Travis status should be...

> Just to be clear, if I understand correctly the code and your proposition, your are suggesting to use move_files_enable to indicate any type of move/copy/etc. and then have a...

So as a first-pass, I think the modes required are: - `move` - default: move into new location regardless of partitions - `copy` - always duplicate into new location -...

Good point - that set of options seem good to me! For maintaining backwards compatibility, I think what you suggest is pretty much the way to do it. Specifically I...