1
0
Fork 0
mirror of synced 2024-05-19 11:52:24 +12:00

Merge pull request #1048 from EsEnZeT/dev

This commit is contained in:
Nick Sweeting 2022-11-22 16:17:29 -08:00 committed by GitHub
commit f86c9fc130
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -154,7 +154,7 @@ def save_text_as_source(raw_text: str, filename: str='{ts}-stdin.txt', out_dir:
for entry in raw_text.split():
try:
if Path(entry).exists:
if Path(entry).exists():
referenced_texts += Path(entry).read_text()
except Exception as err:
print(err)