Bugfix in error message.
This commit is contained in:
parent
e6e1b332be
commit
e0c7a63a5a
1 changed files with 1 additions and 1 deletions
|
@ -539,7 +539,7 @@ def do_fetch(self):
|
||||||
if spack.do_checksum and not self.version in self.versions:
|
if spack.do_checksum and not self.version in self.versions:
|
||||||
raise ChecksumError(
|
raise ChecksumError(
|
||||||
"Cannot fetch %s safely; there is no checksum on file for version %s."
|
"Cannot fetch %s safely; there is no checksum on file for version %s."
|
||||||
% self.version,
|
% (self.name, self.version),
|
||||||
"Add a checksum to the package file, or use --no-checksum to "
|
"Add a checksum to the package file, or use --no-checksum to "
|
||||||
"skip this check.")
|
"skip this check.")
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue