Skip to content

Commit 29755c5

Browse files
committed
Ref #69 Added normalisation of path for output param
Signed-off-by: Krzysztof Kaźmierczyk <[email protected]>
1 parent 1947424 commit 29755c5

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

src/javacore_analyser/javacore_analyser_batch.py

+1
Original file line numberDiff line numberDiff line change
@@ -91,6 +91,7 @@ def batch_process(input_param, output_param, files_separator=DEFAULT_FILE_DELIMI
9191
logging.info("Preferred encoding: " + locale.getpreferredencoding())
9292
logging.info("Input parameter: " + input_param)
9393
logging.info("Report directory: " + output_param)
94+
output_param = os.path.normpath(output_param)
9495
# Needs to be created once output file structure is ready.
9596
logging_utils.create_file_logging(output_param)
9697
# Check whether as input we got list of files or single file

0 commit comments

Comments
 (0)