Skip to content

Commit

Permalink
Fix: variable name
Browse files Browse the repository at this point in the history
  • Loading branch information
orviz committed Sep 13, 2024
1 parent 2c780a8 commit 333dbe6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions plugins/epos/plugin.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
from dicttoxml import dicttoxml

import api.utils as ut
from api.evaluator import ConfigTerms, Evaluator, MetadataValuesBase
from api.evaluator import ConfigTerms, Evaluator

logging.basicConfig(
stream=sys.stdout, level=logging.DEBUG, format="'%(name)s:%(lineno)s' | %(message)s"
Expand Down Expand Up @@ -152,7 +152,7 @@ def get_metadata(self):
eml_schema = "epos"

final_url = (
self.oai_base + "/resources/details/" + self.item_id + "?extended=true"
self.api_endpoint + "/resources/details/" + self.item_id + "?extended=true"
)

error_in_metadata = False
Expand Down

0 comments on commit 333dbe6

Please sign in to comment.