worker_impy: ignore newline at start of experiment docstring

pull/1366/head
Charles Baynham 2019-09-20 15:04:34 +01:00 committed by Sébastien Bourdeauducq
parent f0e87d2e59
commit e50a6d5aaf
1 changed files with 1 additions and 1 deletions

View File

@ -170,7 +170,7 @@ def examine(device_mgr, dataset_mgr, file):
if exp_class.__doc__ is None:
name = class_name
else:
name = exp_class.__doc__.splitlines()[0].strip()
name = exp_class.__doc__.strip().splitlines()[0].strip()
if name[-1] == ".":
name = name[:-1]
argument_mgr = TraceArgumentManager()