forked from TrueCloudLab/restic
error strings should not end with punctuation
This commit is contained in:
parent
1ede018ea6
commit
c46edcd9d6
1 changed files with 1 additions and 1 deletions
|
@ -472,7 +472,7 @@ func (idx *Index) merge(idx2 *Index) error {
|
||||||
defer idx2.m.Unlock()
|
defer idx2.m.Unlock()
|
||||||
|
|
||||||
if !idx2.final {
|
if !idx2.final {
|
||||||
return errors.New("index to merge is not final!")
|
return errors.New("index to merge is not final")
|
||||||
}
|
}
|
||||||
|
|
||||||
packlen := len(idx.packs)
|
packlen := len(idx.packs)
|
||||||
|
|
Loading…
Add table
Reference in a new issue