Hi JimmXinu. I wrote here a week or so ago with a bug report about ficbook.net not working properly, where it was giving a 404 error for any new chapters. Today I spent some time doing diffs between versions and found the culprit.
It is the following line in fanficfare\configurable.py that is causing the issue:
url = quote_plus(ensure_binary(url),safe=';/?:@&=+$,%&')
I added # to it and it seems to work now:
url = quote_plus(ensure_binary(url),safe=';/?:@&=+$,%&#')
Please check if it's the proper way to fix it and if so put it in your code so I don't have to change it with every update.
Thank you.