Skip to content

Commit 9ed0cfa

Browse files
committedMay 9, 2018
Fix #3081 — Make CATEGORY_PAGES_FOLLOW_DESTPATH more resilient
Signed-off-by: Chris Warrick <kwpolska@gmail.com>
1 parent 2cb25fb commit 9ed0cfa

File tree

2 files changed

+2
-6
lines changed

2 files changed

+2
-6
lines changed
 

‎CHANGES.txt

+1
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ Features
99
Bugfixes
1010
--------
1111

12+
* Make ``CATEGORY_PAGES_FOLLOW_DESTPATH`` more resilient (Issue #3081)
1213
* Guard against null items in gallery meta files (Issues #3076, #3077)
1314
* Respect ``USE_FILENAME_AS_TITLE`` in galleries with a meta file
1415
* Fix gallery metadata for multilingual sites (Issue #3078)

‎nikola/plugins/task/categories.py

+1-6
Original file line numberDiff line numberDiff line change
@@ -130,12 +130,7 @@ def get_path(self, classification, lang, dest_type='page'):
130130
sub_dir = []
131131
for post in self.site.posts_per_category[cat_string]:
132132
if post.category_from_destpath:
133-
if not self.site.config['CATEGORY_DESTPATH_FIRST_DIRECTORY_ONLY']:
134-
base_dir = post.folders[lang]
135-
elif post.folder_relative == '.':
136-
base_dir = post.folder_base(lang)
137-
else:
138-
base_dir = post.folder_base(lang) + os.sep + post.folder_relative
133+
base_dir = post.folder_base(lang) + os.sep + os.sep.join(classification)
139134
break
140135
# fallback: first POSTS entry + classification
141136
if base_dir is None:

0 commit comments

Comments
 (0)
Please sign in to comment.