Changes between Version 1 and Version 2 of Ticket #32718, comment 22
- Timestamp:
- May 7, 2021, 11:00:56 PM (4 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #32718, comment 22
v1 v2 26 26 model_inst.save() #<<< in Django 3.2.0 this creates file "MEDIA_ROOT/users/steve/file.txt ! which is correct 27 27 model_inst.save() #<<< in Django 3.2.1 this FAILS with Path issue ! Incorrect 28 model_inst.save() #<<< in Django Latest Git commitwill create "MEDIA_ROOT/users/file.txt ! which is incorrect - missing path!28 model_inst.save() #<<< in Fix above [https://github.com/django/django/pull/14354/commits/1c78e83791163b034a7f1689673bff02f9969368 commit] will create "MEDIA_ROOT/users/file.txt ! which is incorrect - missing path! 29 29 30 30 # What we need to stop: