Skip to content
Snippets Groups Projects
Commit cea47900 authored by Henrik tom Wörden's avatar Henrik tom Wörden
Browse files

put path in brackets

parent 596dfe47
No related branches found
No related tags found
No related merge requests found
...@@ -80,12 +80,13 @@ def find_file_included_by(glob): ...@@ -80,12 +80,13 @@ def find_file_included_by(glob):
Returns a container. Returns a container.
""" """
query_string = "FIND file which is stored at {}".format(glob) query_string = "FIND file which is stored at '{}'".format(glob)
try: try:
return db.execute_query(query_string) return db.execute_query(query_string)
except Exception as e: except Exception as e:
print(e) print(e)
return [] return []
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment