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

Update generate_file_list.py

parent a3caa119
No related branches found
No related tags found
No related merge requests found
Pipeline #
......@@ -16,6 +16,13 @@ def create_file_list_to_search(queue_logging, thread_num, data):
creates an list with strings containing the requested files from given data
-> afterwards it can be requested them from the caching management server
"""
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))
try:
data = find_string_between(queue_logging, thread_num, data, '"', '"')
except Exception as e:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment