Skip to content

Commit

Permalink
Fix flake8 error.
Browse files Browse the repository at this point in the history
  • Loading branch information
brittonsmith committed May 20, 2020
1 parent 575717c commit 7833170
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion trident/roman.py
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ def from_roman(s):
if not s:
raise InvalidRomanNumeralError('Input can not be blank')
if not romanNumeralPattern.search(s):
raise InvalidRomanNumeralError('Invalid Roman numeral: {s}'.format(s))
raise InvalidRomanNumeralError('Invalid Roman numeral: {0}'.format(s))

result = 0
index = 0
Expand Down

0 comments on commit 7833170

Please sign in to comment.