From e0cdda2760dbc1ca363306ae92f986a002b83410 Mon Sep 17 00:00:00 2001 From: Sebastien Bourdeauducq Date: Fri, 2 Sep 2016 08:30:42 +0800 Subject: [PATCH] dashboard: fix argument recomputation for experiments outside repository. Closes #548 --- artiq/dashboard/experiments.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/artiq/dashboard/experiments.py b/artiq/dashboard/experiments.py index aa87e284c..dc07277e6 100644 --- a/artiq/dashboard/experiments.py +++ b/artiq/dashboard/experiments.py @@ -606,6 +606,8 @@ class ExperimentManager: file, class_name, use_repository = self.resolve_expurl(expurl) if use_repository: revision = self.get_submission_options(expurl)["repo_rev"] + else: + revision = None description = await self.experiment_db_ctl.examine( file, use_repository, revision) return description[class_name]["arginfo"]