1
Fork 0
mirror of https://github.com/jech/galene.git synced 2024-11-09 02:05:59 +01:00

Use fmt.Println instead of println.

This commit is contained in:
Juliusz Chroboczek 2024-10-25 18:22:55 +02:00
parent 947b0ce437
commit 19c89386da

View file

@ -911,7 +911,7 @@ func createTokenCmd(cmdname string, args []string) {
if err != nil {
log.Fatalf("Create token: %v", err)
}
println(location)
fmt.Println(location)
}
func revokeTokenCmd(cmdname string, args []string) {