semmyk commited on
Commit
3a3e14f
Β·
1 Parent(s): 843fec5

fix f string quote - pdf_to_md.py", line 241

Browse files

return f"βœ— {info.get("file")} β†’ {exc}\n{tb}"

Files changed (1) hide show
  1. converters/pdf_to_md.py +1 -1
converters/pdf_to_md.py CHANGED
@@ -238,7 +238,7 @@ class PdfToMarkdownConverter:
238
  except Exception as exc:
239
  if attempt == max_retries:
240
  tb = traceback.format_exc()
241
- return f"βœ— {info.get("file")} β†’ {exc}\n{tb}"
242
  #return f"βœ— {md_filename} β†’ {exc}\n{tb}"
243
 
244
  #time.sleep(2 ** attempt)
 
238
  except Exception as exc:
239
  if attempt == max_retries:
240
  tb = traceback.format_exc()
241
+ return f"βœ— {info.get('file')} β†’ {exc}\n{tb}"
242
  #return f"βœ— {md_filename} β†’ {exc}\n{tb}"
243
 
244
  #time.sleep(2 ** attempt)