Skip to content

Commit 82efd3e

Browse files
committed
Fix with str vars
1 parent b168fbc commit 82efd3e

File tree

1 file changed

+2
-6
lines changed

1 file changed

+2
-6
lines changed

plugins/epos/plugin.py

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1074,9 +1074,7 @@ def rda_a1_2_01d(self):
10741074
Message with the results or recommendations to improve this indicator
10751075
"""
10761076
points = 0
1077-
msg = _(
1078-
"At the time, EPOS does not provide authentication or authorisation protocols"
1079-
)
1077+
msg = "At the time, EPOS does not provide authentication or authorisation protocols"
10801078
if self.metadata_authentication:
10811079
points = 100
10821080
msg = "The authentication is given by: " + str(
@@ -1100,9 +1098,7 @@ def rda_a2_01m(self, return_protocol=False, **kwargs):
11001098
Message with the results or recommendations to improve this indicator
11011099
"""
11021100
points = 50
1103-
msg = _(
1104-
"Preservation policy depends on the authority where this Digital Object is stored"
1105-
)
1101+
msg = "Preservation policy depends on the authority where this Digital Object is stored"
11061102

11071103
if self.metadata_persistence:
11081104
if ut.check_link(self.metadata_persistence[0]):

0 commit comments

Comments
 (0)