File tree Expand file tree Collapse file tree 1 file changed +7
-4
lines changed Expand file tree Collapse file tree 1 file changed +7
-4
lines changed Original file line number Diff line number Diff line change @@ -419,14 +419,17 @@ def update_build(self, state=None):
419
419
if isinstance (self .failure ,
420
420
(BuildEnvironmentException , BuildEnvironmentWarning )):
421
421
self .build ['error' ] = ugettext_noop (
422
- "A failure in building the documentation as occured: {}" .format (
423
- str (self .failure )
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' ]
424
426
)
425
427
)
426
428
else :
427
429
self .build ['error' ] = ugettext_noop (
428
- "A failure in our code has occured. The failure is: {}" .format (
429
- str (self .failure )
430
+ "A failure in our code has occured. "
431
+ "Please report this to us with your build id ({})." .format (
432
+ self .build ['pk' ]
430
433
)
431
434
)
432
435
You can’t perform that action at this time.
0 commit comments