Skip to content

Commit 22065e2

Browse files
committedMay 23, 2015
give meaningful error if two posts conflict (Fix #1749)
1 parent 708c176 commit 22065e2

File tree

2 files changed

+17
-2
lines changed

2 files changed

+17
-2
lines changed
 

‎CHANGES.txt

+1
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ Features
1414
Bugfixes
1515
--------
1616

17+
* Better error if two posts/pages output conflict (Issue #1749)
1718
* Scanning of posts refactored out of core (Issue #1700)
1819
* github_deploy records lastdeploy timestamp like regular deploy
1920
* Use a global directory for gallery images, ignoring translations (Issue #1726)

‎nikola/nikola.py

+16-2
Original file line numberDiff line numberDiff line change
@@ -1463,8 +1463,22 @@ def scan_posts(self, really=False, ignore_quit=False, quiet=False):
14631463
self.pages.append(post)
14641464

14651465
for lang in self.config['TRANSLATIONS'].keys():
1466-
self.post_per_file[post.destination_path(lang=lang)] = post
1467-
self.post_per_file[post.destination_path(lang=lang, extension=post.source_ext())] = post
1466+
dest = post.destination_path(lang=lang)
1467+
src_dest = post.destination_path(lang=lang, extension=post.source_ext())
1468+
if dest in self.post_per_file:
1469+
utils.LOGGER.error('Two posts are trying to generate {0}: {1} and {2}'.format(
1470+
dest,
1471+
self.post_per_file[dest].source_path,
1472+
post.source_path))
1473+
sys.exit(1)
1474+
if (src_dest in self.post_per_file) and self.config['COPY_SOURCES']:
1475+
utils.LOGGER.error('Two posts are trying to generate {0}: {1} and {2}'.format(
1476+
src_dest,
1477+
self.post_per_file[dest].source_path,
1478+
post.source_path))
1479+
sys.exit(1)
1480+
self.post_per_file[dest] = post
1481+
self.post_per_file[src_dest] = post
14681482

14691483
# Sort everything.
14701484

0 commit comments

Comments
 (0)
Please sign in to comment.