Skip to content
Snippets Groups Projects
Commit 4ce11c1b authored by Andre Maroneze's avatar Andre Maroneze
Browse files

[fc-script] use relative paths in results of find-fun

parent 9cc260b1
No related branches found
No related tags found
No related merge requests found
...@@ -101,8 +101,8 @@ else: ...@@ -101,8 +101,8 @@ else:
if possible_declarators != []: if possible_declarators != []:
print("Possible declarations for function '%s' in the following file(s):" print("Possible declarations for function '%s' in the following file(s):"
% fname) % fname)
print(" " + "\n ".join(possible_declarators)) print(" " + "\n ".join(map(os.path.relpath, possible_declarators)))
if possible_definers != []: if possible_definers != []:
print("Possible definitions for function '%s' in the following file(s):" print("Possible definitions for function '%s' in the following file(s):"
% fname) % fname)
print(" " + "\n ".join(possible_definers)) print(" " + "\n ".join(map(os.path.relpath, possible_definers)))
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment