Changes between Version 1 and Version 2 of Ticket #32718, comment 22


Ignore:
Timestamp:
May 7, 2021, 11:00:56 PM (3 years ago)
Author:
carderm

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #32718, comment 22

    v1 v2  
    2626model_inst.save()    #<<< in Django 3.2.0 this creates file "MEDIA_ROOT/users/steve/file.txt   ! which is correct
    2727model_inst.save()    #<<< in Django 3.2.1 this FAILS with Path issue ! Incorrect
    28 model_inst.save()    #<<< in Django Latest Git commit will create "MEDIA_ROOT/users/file.txt ! which is incorrect - missing path!
     28model_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!
    2929
    3030# What we need to stop:
Back to Top