From ddc5bd4bbf113749c10b9b6509a965ca3bccdda8 Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Sun, 23 Aug 2009 10:46:40 -0600 Subject: [PATCH] Change default save to disk template to {author_sort}/{title}/{title} - {authors} --- src/calibre/library/save_to_disk.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/calibre/library/save_to_disk.py b/src/calibre/library/save_to_disk.py index cafe8addc8..adaa9c8689 100644 --- a/src/calibre/library/save_to_disk.py +++ b/src/calibre/library/save_to_disk.py @@ -17,7 +17,7 @@ from calibre.constants import preferred_encoding, filesystem_encoding from calibre import strftime -DEFAULT_TEMPLATE = '{author_sort}/{title} - {authors}' +DEFAULT_TEMPLATE = '{author_sort}/{title}/{title} - {authors}' FORMAT_ARG_DESCS = dict( title=_('The title'), authors=_('The authors'),