From 5bc689c9fe2d1779b44ec428f695a799d63f449d Mon Sep 17 00:00:00 2001 From: allegroai <> Date: Thu, 21 Oct 2021 09:55:32 +0300 Subject: [PATCH] Fix clearml-task diff was corrupted by windows drive letter and separator (issue #483) --- clearml/backend_interface/task/populate.py | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/clearml/backend_interface/task/populate.py b/clearml/backend_interface/task/populate.py index 7aaf696d..55cb3a69 100644 --- a/clearml/backend_interface/task/populate.py +++ b/clearml/backend_interface/task/populate.py @@ -3,6 +3,7 @@ import json import os import re import tempfile +from sys import platform from functools import reduce from logging import getLogger from typing import Optional, Sequence, Union, Tuple, List, Callable, Dict, Any @@ -270,8 +271,12 @@ class CreateAndPopulate(object): "Use --requirements or --packages".format(reqs_txt_file.as_posix())) if self.add_task_init_call: - script_entry = os.path.abspath('/' + task_state['script'].get('working_dir', '.') + - '/' + task_state['script']['entry_point']) + script_entry = ('/' + task_state['script'].get('working_dir', '.') + + '/' + task_state['script']['entry_point']) + if platform == "win32": + script_entry = os.path.normpath(script_entry).replace('\\', '/') + else: + script_entry = os.path.abspath(script_entry) idx_a = 0 # find the right entry for the patch if we have a local file (basically after __future__ if local_entry_file: