Skip to content

Commit

Permalink
Fix typo in error message
Browse files Browse the repository at this point in the history
  • Loading branch information
sloria authored and lnielsen committed Jul 2, 2018
1 parent a5eb016 commit 9bfee78
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion datacite/xmlutils.py
Expand Up @@ -78,7 +78,7 @@ def rule(self, key):
def register(f):
if key in self.rules:
raise ValueError(
'Rule for "{0}" already registerd'.format(key))
'Rule for "{0}" already registered'.format(key))
self.rules[key] = f
return f
return register

0 comments on commit 9bfee78

Please sign in to comment.