3
0
Fork 0
mirror of https://github.com/YosysHQ/sby.git synced 2026-05-06 20:45:20 +00:00

Merge pull request #362 from UnknownDK/backportprint

fix: print Path as string
This commit is contained in:
Miodrag Milanović 2026-04-24 07:41:17 +02:00 committed by GitHub
commit f57802a166
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -365,7 +365,7 @@ if dump_files:
find_files(taskname)
else:
find_files(None)
print("\n".join(file_set))
print("\n".join(str(f) for f in file_set))
sys.exit(0)
if dump_tags: