Skip to content

Commit

Permalink
Ref #69 Added normalisation of path for output param
Browse files Browse the repository at this point in the history
Signed-off-by: Krzysztof Kaźmierczyk <[email protected]>
  • Loading branch information
kkazmierczyk committed Jan 2, 2025
1 parent 1947424 commit 29755c5
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/javacore_analyser/javacore_analyser_batch.py
Original file line number Diff line number Diff line change
Expand Up @@ -91,6 +91,7 @@ def batch_process(input_param, output_param, files_separator=DEFAULT_FILE_DELIMI
logging.info("Preferred encoding: " + locale.getpreferredencoding())
logging.info("Input parameter: " + input_param)
logging.info("Report directory: " + output_param)
output_param = os.path.normpath(output_param)
# Needs to be created once output file structure is ready.
logging_utils.create_file_logging(output_param)
# Check whether as input we got list of files or single file
Expand Down

0 comments on commit 29755c5

Please sign in to comment.