Skip to content

Commit

Permalink
Fix with str vars
Browse files Browse the repository at this point in the history
  • Loading branch information
orviz committed Oct 17, 2024
1 parent b168fbc commit 82efd3e
Showing 1 changed file with 2 additions and 6 deletions.
8 changes: 2 additions & 6 deletions plugins/epos/plugin.py
Original file line number Diff line number Diff line change
Expand Up @@ -1074,9 +1074,7 @@ def rda_a1_2_01d(self):
Message with the results or recommendations to improve this indicator
"""
points = 0
msg = _(
"At the time, EPOS does not provide authentication or authorisation protocols"
)
msg = "At the time, EPOS does not provide authentication or authorisation protocols"
if self.metadata_authentication:
points = 100
msg = "The authentication is given by: " + str(
Expand All @@ -1100,9 +1098,7 @@ def rda_a2_01m(self, return_protocol=False, **kwargs):
Message with the results or recommendations to improve this indicator
"""
points = 50
msg = _(
"Preservation policy depends on the authority where this Digital Object is stored"
)
msg = "Preservation policy depends on the authority where this Digital Object is stored"

if self.metadata_persistence:
if ut.check_link(self.metadata_persistence[0]):
Expand Down

0 comments on commit 82efd3e

Please sign in to comment.