Damien
Damien
Sorry, I've been a bit AFK, looks good to me ! EDIT: oops, looks like the tests needs fixing before the merge as you said
If you're defining a custom auth model like in the third step, yes, you should add it to `AUTH_USER_MODEL`. But if you don't already have a custom User model, you...
Thanks, I will look into it
Merged it :+1: thanks !
oops, no, I merged a fix for the doc, not a usage without the Mixin
Current version on Pypi triggers an import error with django 1.10: from save_the_change.mixins import SaveTheChange File "save_the_change/mixins.py", line 11, in from django.db.models.related import RelatedObject ImportError: No module named 'django.db.models.related' But...
+1 and at least you're gonna get good bug reports (against master instead of against an old version)
To add to this answer, you can add `from pudb import set_trace; set_trace(paused=False)` at the start of your script as documented [here](https://documen.tician.de/pudb/usage.html#programming-pudb) as a workaround
I could do: ```python log.info('Downloading GeoZones bundle: %s', filename) with tmp.open(GEOZONE_FILENAME, 'w') as f: pass filename, _ = urlretrieve(filename, tmp.path(GEOZONE_FILENAME)) ``` So it works with all backends
@quaxsze ahah, this time I pushed something you will like I think, downloading the chunk way with `urlopen`