Fix the source file checking

This commit is contained in:
CkuT 2017-05-06 14:59:09 +02:00
parent c7876dbbe8
commit 1f145c6cba

View File

@ -77,7 +77,7 @@ class Command(Renderable, BaseCommand):
)
doc_file = record["__exported_file_name__"]
if not os.path.exists(os.path.join(self.source, doc_file)):
if not os.path.exists(doc_file):
raise CommandError(
'The manifest file refers to "{}" which does not '
'appear to be in the source directory.'.format(doc_file)