Skip to content

Commit

Permalink
Fixing processing order (so that always the same file is chosen as ba…
Browse files Browse the repository at this point in the history
…se path).
  • Loading branch information
felixfontein committed May 4, 2018
1 parent 6f9248f commit a73cd50
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion nikola/plugins/misc/scan_posts.py
Expand Up @@ -83,7 +83,7 @@ def scan(self):
if not any([x.startswith('.')
for x in p.split(os.sep)])]

for base_path in full_list:
for base_path in sorted(full_list):
if base_path in seen:
continue
try:
Expand Down

0 comments on commit a73cd50

Please sign in to comment.