Stephen Rice
Stephen Rice
Building on @terrazasrj suggestion I did this in `__init__py` of my module which is executed before any existing imports from `facebook_business` ``` from facebook_business import apiconfig apiconfig.ads_api_config['API_VERSION'] = 'v14.0' for...
I think I've got around this by doing the following though I'm not 100% convinced. ``` def fields_included(self, model): if manager := getattr(model, "history", None): excluded_fields = manager.model._history_excluded_fields else: excluded_fields...
Of possibly to change this line: https://github.com/jazzband/django-simple-history/blob/29108a5b94397ba6107e6899db957289c75468c1/simple_history/models.py#L713 to: ``` for field in manager.model.tracked_fields: ```
I believe the stacktrace above on transparent GIFs was caused by a if/elif bug in wagtailimages/models.py causing a second attempt to save the same file. This got fixed some time...
One thing I have noticed is that using a dynamic template is the API only sends the content types you provide in the API call, although the content value itself...