Fix bug/oversight in formatting error message. (#7810)

This commit is contained in:
Elizabeth Fischer
2018-04-18 16:05:37 -04:00
committed by Adam J. Stewart
parent 0fc51a9c3e
commit d3c1463b0a

View File

@@ -492,7 +492,7 @@ class InstallDirectoryAlreadyExistsError(DirectoryLayoutError):
def __init__(self, path):
super(InstallDirectoryAlreadyExistsError, self).__init__(
"Install path %s already exists!")
"Install path %s already exists!" % path)
class SpecReadError(DirectoryLayoutError):