Fix format string (in class RemoveFailedError) (#1803)
This commit is contained in:
parent
d71f8dcab5
commit
c9fe2cd469
1 changed files with 1 additions and 1 deletions
|
@ -423,7 +423,7 @@ class RemoveFailedError(DirectoryLayoutError):
|
|||
def __init__(self, installed_spec, prefix, error):
|
||||
super(RemoveFailedError, self).__init__(
|
||||
'Could not remove prefix %s for %s : %s'
|
||||
% prefix, installed_spec.short_spec, error)
|
||||
% (prefix, installed_spec.short_spec, error))
|
||||
self.cause = error
|
||||
|
||||
|
||||
|
|
Loading…
Reference in a new issue