We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d48b6f5 commit f062f61Copy full SHA for f062f61
src/utils/utils.go
@@ -34,7 +34,7 @@ func GetStringOrFile(arg string) string {
34
35
// RandomString return a string of length n
36
func RandomString(n int) string {
37
- var letters = []rune("abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789-_")
+ var letters = []rune("abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789")
38
39
s := make([]rune, n)
40
for i := range s {
0 commit comments