Skip to content

Commit 26c8f2b

Browse files
committedMay 9, 2018
Improve style for 9ed0cfa/#3081
Signed-off-by: Chris Warrick <kwpolska@gmail.com>
1 parent 9ed0cfa commit 26c8f2b

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed
 

‎nikola/plugins/task/categories.py

+2-3
Original file line numberDiff line numberDiff line change
@@ -127,16 +127,15 @@ def get_path(self, classification, lang, dest_type='page'):
127127
cat_string = '/'.join(classification)
128128
if self.site.config['CATEGORY_PAGES_FOLLOW_DESTPATH']:
129129
base_dir = None
130-
sub_dir = []
131130
for post in self.site.posts_per_category[cat_string]:
132131
if post.category_from_destpath:
133-
base_dir = post.folder_base(lang) + os.sep + os.sep.join(classification)
132+
base_dir = post.folder_base(lang)
134133
break
135134
# fallback: first POSTS entry + classification
136135
if base_dir is None:
137136
base_dir = self.site.config['POSTS'][0][1]
138-
sub_dir = [self.slugify_tag_name(part, lang) for part in classification]
139137
base_dir_list = base_dir.split(os.sep)
138+
sub_dir = [self.slugify_tag_name(part, lang) for part in classification]
140139
return [_f for _f in (base_dir_list + sub_dir) if _f], 'auto'
141140
else:
142141
return [_f for _f in [self.site.config['CATEGORY_PATH'](lang)] if _f] + self.slugify_category_name(

0 commit comments

Comments
 (0)
Please sign in to comment.