Skip to content

Commit 6a24dd0

Browse files
committed
Fix initialization of SEQ_START
1 parent 4100eb7 commit 6a24dd0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/main.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ def initialize_runs(handler: PackageHandler, today: datetime) -> int:
109109

110110
# HANDLE ENVIRONMENT VARIABLES
111111
env_vars = {
112-
"seq_start": repr(today).replace("'", '"'),
112+
"seq_start": f'"{today.strftime('%Y-%m-%d')}"',
113113
"nb": int(os.environ.get("NB", 0)),
114114
"nb_name": os.environ.get("NB_NAME", "NB"),
115115
"seq_notation": int(os.environ.get("SEQ_NOTATION", 0)),

0 commit comments

Comments
 (0)