mirror of
https://github.com/jech/galene.git
synced 2024-11-24 17:45:58 +01:00
Use fmt.Println instead of println.
This commit is contained in:
parent
947b0ce437
commit
19c89386da
1 changed files with 1 additions and 1 deletions
|
@ -911,7 +911,7 @@ func createTokenCmd(cmdname string, args []string) {
|
||||||
if err != nil {
|
if err != nil {
|
||||||
log.Fatalf("Create token: %v", err)
|
log.Fatalf("Create token: %v", err)
|
||||||
}
|
}
|
||||||
println(location)
|
fmt.Println(location)
|
||||||
}
|
}
|
||||||
|
|
||||||
func revokeTokenCmd(cmdname string, args []string) {
|
func revokeTokenCmd(cmdname string, args []string) {
|
||||||
|
|
Loading…
Reference in a new issue