2
0
mirror of https://github.com/m-labs/artiq.git synced 2024-12-25 11:18:27 +08:00

worker_impy: ignore newline at start of experiment docstring

This commit is contained in:
Charles Baynham 2019-09-20 15:04:34 +01:00 committed by Sébastien Bourdeauducq
parent f0e87d2e59
commit e50a6d5aaf

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()