From d7d475c7be0706265053136a2083c14b07779128 Mon Sep 17 00:00:00 2001 From: Matthew Newville Date: Mon, 9 Jul 2018 18:14:48 -0500 Subject: [PATCH] bugfix for saving athena projects --- plugins/xasgui/xasgui.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/xasgui/xasgui.py b/plugins/xasgui/xasgui.py index ad237e6c3..751ee68ef 100644 --- a/plugins/xasgui/xasgui.py +++ b/plugins/xasgui/xasgui.py @@ -726,7 +726,7 @@ def save_athena_project(self, filename, grouplist, prompt=True): aprj = AthenaProject(filename=outfile, _larch=self.larch) for label, grp in zip(grouplist, savegroups): - aprj.add_group(grp, label=label) + aprj.add_group(grp) aprj.save(use_gzip=True)