Fix format string (in class RemoveFailedError) (#1803)

This commit is contained in:
Eric 2016-09-20 11:27:35 +02:00 committed by Todd Gamblin
parent d71f8dcab5
commit c9fe2cd469

View file

@ -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