ASKBOT / askbot-devel

Askbot is a Django/Python Q&A forum. **Contributors README**: https://github.com/ASKBOT/askbot-devel#how-to-contribute. Commercial hosting of Askbot and support are available at https://askbot.com
Other
1.56k stars 627 forks source link

Bugfix! Variable was not resolved but used literally. #823

Closed martin-bts closed 5 years ago

martin-bts commented 5 years ago

The last patch introduced a bug where too many ' are involved.

providers['mod.name']

should be

providers[mod.name]