Too eager with f-strings

This commit is contained in:
amandalund 2019-02-22 21:53:54 -06:00
parent f6097dbe9e
commit 653993a82b

View file

@ -191,7 +191,8 @@ def get_table(filename, name=None):
if lib.tables:
return lib.tables[0]
else:
raise ValueError(f'Could not find ACE table with name: {name}')
raise ValueError('Could not find ACE table with name: {}'
.format(name))
class Library(EqualityMixin):