Skip to content
Snippets Groups Projects
Commit a3caa119 authored by Martin Sauter's avatar Martin Sauter
Browse files

Fix if requested files appear in double quotes

parent 71023aa1
Branches
Tags
No related merge requests found
Pipeline #
......@@ -52,6 +52,12 @@ def get_files_to_search_from_data(queue_logging, thread_num, data):
queue_logging.put("WARNI: " + str(thread_num) + ": Failed to remove blanks from: "
+ str(data)
+ "\nPython-ERROR: " + str(e))
try:
data = data.replace("\"\"", "\"")
except Exception as e:
queue_logging.put("WARNI: " + str(thread_num) + ": Failed to remove double \" from: "
+ str(data)
+ "\nPython-ERROR: " + str(e))
while True:
# check if files are separated by ","
try:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment