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 46f94d7 commit b831f93Copy full SHA for b831f93
benchmark/scripts/Benchmark_Driver
@@ -331,7 +331,7 @@ class BenchmarkDoctor(object):
331
self.driver = driver or BenchmarkDriver(args)
332
self.results = {}
333
334
- if args.markdown:
+ if hasattr(args, 'markdown') and args.markdown:
335
self.console_handler = MarkdownReportHandler(sys.stdout)
336
else:
337
self.console_handler = logging.StreamHandler(sys.stdout)
0 commit comments