Skip to content

Commit

Permalink
fix(rest): use Windows compatible path names for manual runs
Browse files Browse the repository at this point in the history
  • Loading branch information
marstamm committed Sep 26, 2024
1 parent b5916b0 commit 7ee199a
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions scripts/rest.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,9 +25,8 @@ async def run():
script = data.get("script")
script_id = data.get("id") or "default"
variables = data.get("variables") or {}
stdOut = io.StringIO()

currentTime = datetime.now().isoformat()
currentTime = datetime.now().strftime("%Y-%m-%dT%H-%M-%S")

try:
output = await run_robot_task(
Expand Down

0 comments on commit 7ee199a

Please sign in to comment.