From 9b73aea1faba91ce672a9b80ec230ee677f9c5c1 Mon Sep 17 00:00:00 2001 From: BO ZHANG Date: Sun, 31 Dec 2023 12:02:47 +0800 Subject: [PATCH] refactor PIPELINE --- csst_common/pipeline.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/csst_common/pipeline.py b/csst_common/pipeline.py index 488084c..77b8bda 100644 --- a/csst_common/pipeline.py +++ b/csst_common/pipeline.py @@ -147,7 +147,7 @@ class Pipeline: def info_header(self) -> fits.Header: """Summarize pipeline info into a `astropy.io.fits.Header`.""" h = fits.Header() - h.set("PIPELINE_ID", self.pipeline_id, comment="pipeline ID") + h.set("PIPELINE", self.pipeline_id, comment="pipeline ID") h.set("BUILD", self.build, comment="pipeline build number") h.set("CREATED", self.pipeline_id, comment="pipeline build time") return reformat_header(h, strip=False, comment="Pipeline info") -- GitLab