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


Ignore:
Timestamp:
May 6, 2021, 4:54:35 PM (3 years ago)
Author:
carderm

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #32718, comment 22

    initial v1  
    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 "MDEIA_ROOT/users/file.txt ! which is incorrect - missing path!
     28model_inst.save()    #<<< in Django Latest Git commit will create "MEDIA_ROOT/users/file.txt ! which is incorrect - missing path!
    2929
    3030# What we need to stop:
Back to Top