We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 17bf06d commit 3f8076fCopy full SHA for 3f8076f
readthedocs/doc_builder/environments.py
@@ -418,13 +418,7 @@ def update_build(self, state=None):
418
# BuildEnvironmentException or BuildEnvironmentWarning
419
if isinstance(self.failure,
420
(BuildEnvironmentException, BuildEnvironmentWarning)):
421
- self.build['error'] = ugettext_noop(
422
- "A failure in building the documentation as occured. "
423
- "If you believe this is an error with Read the Docs, "
424
- "please include the build id({}) in your bug report.".format(
425
- self.build['pk']
426
- )
427
+ self.build['error'] = str(self.failure)
428
else:
429
self.build['error'] = ugettext_noop(
430
"A failure in our code has occured. "
0 commit comments