Skip to content

Commit

Permalink
DOC remove BDP from these lines
Browse files Browse the repository at this point in the history
  • Loading branch information
prjemian authored Nov 8, 2024
1 parent 11a9707 commit 2013e3b
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions apstools/utils/aps_data_management.py
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ def dm_setup(setup_file):
"""
Name the APS Data Management bash script that activates its conda environment.
The return result defines the ``BDP_WORKFLOW_OWNER`` symbol.
The return result is the 'owner' of the DM workflows.
"""
global DM_SETUP_FILE

Expand All @@ -134,10 +134,10 @@ def dm_setup(setup_file):
DM_SETUP_FILE = setup_file

dm_source_environ()
bdp_workflow_owner = environ["DM_STATION_NAME"].lower()
workflow_owner = environ["DM_STATION_NAME"].lower()

logger.info("APS DM workflow owner: %s", bdp_workflow_owner)
return bdp_workflow_owner
logger.info("APS DM workflow owner: %s", workflow_owner)
return workflow_owner


def build_run_metadata_dict(user_md: dict, **dm_kwargs) -> dict:
Expand Down

0 comments on commit 2013e3b

Please sign in to comment.