Skip to content

Commit

Permalink
__name__ should be __package__, #10
Browse files Browse the repository at this point in the history
  • Loading branch information
kba committed Apr 15, 2024
1 parent 45d5dcd commit 0d756b4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ocrd_froc/processor.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
from ocrd_modelfactory import page_from_file
from .froc import Froc

OCRD_TOOL = loads(resource_string(__name__, 'ocrd-tool.json'))
OCRD_TOOL = loads(resource_string(__package__, 'ocrd-tool.json'))

class FROCProcessor(Processor):

Expand Down

0 comments on commit 0d756b4

Please sign in to comment.