diff pkg/imports/dsec.go @ 4847:4847ac70103a

Made staticcheck happy. - error strings should not end with punctuation or a newline (ST1005) - error strings should not be capitalized (ST1005)
author Sascha L. Teichmann <sascha.teichmann@intevation.de>
date Mon, 18 Nov 2019 11:54:20 +0100
parents e1cf039ea25a
children e4ab338e7ba9
line wrap: on
line diff
--- a/pkg/imports/dsec.go	Thu Nov 14 14:53:15 2019 +0100
+++ b/pkg/imports/dsec.go	Mon Nov 18 11:54:20 2019 +0100
@@ -79,7 +79,7 @@
 	}
 	if n == 0 {
 		return errors.New(
-			"Nothing deleted. Probably due to missing access rights.")
+			"nothing deleted. Probably due to missing access rights")
 	}
 	return err
 }