Browse Source

Merge pull request #1048 from EsEnZeT/dev

Nick Sweeting 3 years ago
parent
commit
f86c9fc130
1 changed files with 1 additions and 1 deletions
  1. 1 1
      archivebox/parsers/__init__.py

+ 1 - 1
archivebox/parsers/__init__.py

@@ -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)