Skip to content

Commit

Permalink
cmd: Fixup linter errors
Browse files Browse the repository at this point in the history
  • Loading branch information
SchoolGuy committed May 14, 2024
1 parent 962a91b commit fadb8a0
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions cmd/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ func main() {
if err != nil {
fmt.Println(err)
}
fmt.Printf("Distros: %s\n", distros)
fmt.Printf("Distros: %#v\n", distros)
fmt.Println("Creating a Distro")
newDistro, err := c.CreateDistro(d)
if err != nil {
Expand All @@ -92,7 +92,7 @@ func main() {
if err != nil {
fmt.Println(err)
}
fmt.Printf("Profiles: %s\n", profiles)
fmt.Printf("Profiles: %#v\n", profiles)
fmt.Println("Creating a Profile")
p := cobbler.Profile{
Name: "testprofile",
Expand Down Expand Up @@ -158,7 +158,7 @@ func main() {
if err != nil {
fmt.Println(err)
}
fmt.Println("s2: %s\n", s2)
fmt.Printf("s2: %#v\n", s2)

fmt.Println("Verifying NIC data")
interfaces, err := s2.GetInterfaces()
Expand Down

0 comments on commit fadb8a0

Please sign in to comment.