Skip to content

Commit

Permalink
fix UI package name
Browse files Browse the repository at this point in the history
  • Loading branch information
jrasell committed Apr 3, 2023
1 parent 4a41ec9 commit 15b59cd
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion command/alloc_logs.go
Original file line number Diff line number Diff line change
Expand Up @@ -377,7 +377,7 @@ func (l *AllocLogsCommand) tailMultipleFiles(client *api.Client, alloc *api.Allo

// Generate our logging UI that doesn't add any additional formatting to
// output strings.
logUI, err := cli.NewLogUI(l.Ui)
logUI, err := ui.NewLogUI(l.Ui)
if err != nil {
return err
}
Expand Down
2 changes: 1 addition & 1 deletion command/ui/ui.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package cli
package ui

import (
"errors"
Expand Down
2 changes: 1 addition & 1 deletion command/ui/ui_test.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package cli
package ui

import (
"bytes"
Expand Down

0 comments on commit 15b59cd

Please sign in to comment.