From 5366aa96fef0ce55fc425cf273c7debe74d99305 Mon Sep 17 00:00:00 2001 From: Jacob Kaplan-Moss Date: Tue, 23 Feb 2010 22:39:22 +0000 Subject: Fixed #10258: handle duplicate file names better. Instead of just continually appending "_" to duplicate file names, Django's default storage now appends `_1`, `_2`, `_3`, etc. Thanks to ianschenck and Thilo. git-svn-id: http://code.djangoproject.com/svn/django/trunk@12552 bcc190cf-cafb-0310-a4f2-bffc1f526a37 --- docs/howto/custom-file-storage.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'docs') diff --git a/docs/howto/custom-file-storage.txt b/docs/howto/custom-file-storage.txt index cfb3226289..5005feaa80 100644 --- a/docs/howto/custom-file-storage.txt +++ b/docs/howto/custom-file-storage.txt @@ -88,5 +88,5 @@ the provided filename into account. The ``name`` argument passed to this method will have already cleaned to a filename valid for the storage system, according to the ``get_valid_name()`` method described above. -The code provided on ``Storage`` simply appends underscores to the filename -until it finds one that's available in the destination directory. +The code provided on ``Storage`` simply appends ``"_1"``, ``"_2"``, etc. to the +filename until it finds one that's available in the destination directory. -- cgit v1.3