mirror of
https://github.com/YosysHQ/sby.git
synced 2026-05-21 19:49:38 +00:00
Merge pull request #362 from UnknownDK/backportprint
fix: print Path as string
This commit is contained in:
commit
f57802a166
1 changed files with 1 additions and 1 deletions
|
|
@ -365,7 +365,7 @@ if dump_files:
|
||||||
find_files(taskname)
|
find_files(taskname)
|
||||||
else:
|
else:
|
||||||
find_files(None)
|
find_files(None)
|
||||||
print("\n".join(file_set))
|
print("\n".join(str(f) for f in file_set))
|
||||||
sys.exit(0)
|
sys.exit(0)
|
||||||
|
|
||||||
if dump_tags:
|
if dump_tags:
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue