diff options
author | John Ericson <John.Ericson@Obsidian.Systems> | 2020-07-20 17:43:19 +0000 |
---|---|---|
committer | John Ericson <John.Ericson@Obsidian.Systems> | 2020-07-20 17:43:19 +0000 |
commit | c58c6165c554d671f87b463c9ab1d47a5d75bbbb (patch) | |
tree | 942c92adab355b237e32169fccdc7a280868d8bd /src/libutil/hash.cc | |
parent | bf61871271971aa45237fb9ba7fa4c63ae083ff2 (diff) |
Remove period at the end of the exception message
Diffstat (limited to 'src/libutil/hash.cc')
-rw-r--r-- | src/libutil/hash.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libutil/hash.cc b/src/libutil/hash.cc index 65ba1dc81..dfb3668f1 100644 --- a/src/libutil/hash.cc +++ b/src/libutil/hash.cc @@ -177,7 +177,7 @@ Hash Hash::parseAnyPrefixed(std::string_view original) // Either the string or user must provide the type, if they both do they // must agree. if (!optParsedType) - throw BadHash("hash '%s' does not include a type.", rest); + throw BadHash("hash '%s' does not include a type", rest); return Hash(rest, *optParsedType, isSRI); } |