Browse Source

修复打印结果的格式问题

gitlink
Sydonian 1 year ago
parent
commit
b9a7386bfa
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      client/internal/cmdline/bucket.go

+ 1
- 1
client/internal/cmdline/bucket.go View File

@@ -36,7 +36,7 @@ func BucketCreateBucket(ctx CommandContext, bucketName string) error {
return err
}

fmt.Printf("Create bucket %s success, id: %d", bucketName, bucketID)
fmt.Printf("Create bucket %v success, id: %v", bucketName, bucketID)
return nil
}



Loading…
Cancel
Save