mirror of
https://github.com/Mikaela/Limnoria.git
synced 2024-12-25 04:02:46 +01:00
Fixed string formatting bug
This commit is contained in:
parent
46a3f07491
commit
106f957fac
@ -306,7 +306,7 @@ class OnlySomeStrings(String):
|
|||||||
else:
|
else:
|
||||||
raise InvalidRegistryValue, \
|
raise InvalidRegistryValue, \
|
||||||
'%r is not a valid value. Valid values include %s.' % \
|
'%r is not a valid value. Valid values include %s.' % \
|
||||||
(utils.commaAndify(map(repr, self.validStrings)))
|
(s, utils.commaAndify(map(repr, self.validStrings)))
|
||||||
|
|
||||||
class NormalizedString(String):
|
class NormalizedString(String):
|
||||||
def set(self, s):
|
def set(self, s):
|
||||||
|
Loading…
Reference in New Issue
Block a user