Fix format string (in class RemoveFailedError) (#1803)
This commit is contained in:
parent
d71f8dcab5
commit
c9fe2cd469
@ -423,7 +423,7 @@ class RemoveFailedError(DirectoryLayoutError):
|
|||||||
def __init__(self, installed_spec, prefix, error):
|
def __init__(self, installed_spec, prefix, error):
|
||||||
super(RemoveFailedError, self).__init__(
|
super(RemoveFailedError, self).__init__(
|
||||||
'Could not remove prefix %s for %s : %s'
|
'Could not remove prefix %s for %s : %s'
|
||||||
% prefix, installed_spec.short_spec, error)
|
% (prefix, installed_spec.short_spec, error))
|
||||||
self.cause = error
|
self.cause = error
|
||||||
|
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user