J Wilson
J Wilson
I am also seeing this argparse.ArgumentError when trying to upgrade a project from Django 3.0.8 to Django 3.1.2.
You will be able to edit global settings via the admin site that could potentially affect the running of a project, so, no, I don't think that is a good...
The only work-around I've been able to find is to load the module, convert it to a dict, and then delete it. Which works, assuming the config module is never...
I suppose this is also an issue for blueprint installs. And at least the one blueprint.py I looked at had a bunch of imports https://github.com/tarbell-project/tarbell-template/blob/1.0/blueprint.py. And I don't know what...
I wouldn't bother trying the fork. It is not in a coherent state right now. Someone more familiar with the project should scope out the desired features. I wasn't given...
Sounds good to me.
I think you could write a custom validator, subclassing `oauth2_provider.oauth2_validators.OAuth2Validator` and overriding the `save_bearer_token()` method. Within this method, you know the `request.client`.