Skip to content

Commit

Permalink
mergeme
Browse files Browse the repository at this point in the history
  • Loading branch information
robtaylor committed Oct 29, 2024
1 parent b9bd116 commit 159ff07
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions doorstop/core/importer.py
Original file line number Diff line number Diff line change
Expand Up @@ -192,9 +192,9 @@ def _check_doc(tree, worksheet, workbook):
try:
document = tree.find_document(prefix)
except DoorstopError:
log.warn(f"no matching document found for sheet {worksheet.title}. "
f"If you wish to import this, first create a document "
f"with the prefix {prefix}")
log.warning(f"no matching document found for sheet {worksheet.title}. "
f"If you wish to import this, first create a document "
f"with the prefix {prefix}")
return None
return document

Expand Down

0 comments on commit 159ff07

Please sign in to comment.