Skip to content

Commit 546a566

Browse files
committed
Merge branch 'master' of https://github.com/hoop33/limo
2 parents d742419 + 13ece4f commit 546a566

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

output/color.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ func (c *Color) Event(event *model.Event) {
6969
c.Error(err.Error())
7070
}
7171

72-
_, err = buffer.WriteString(color.RedString(fmt.Sprintf(" (%s)", event.URL)))
72+
_, err = buffer.WriteString(color.RedString(fmt.Sprintf(" %s", event.URL)))
7373
if err != nil {
7474
c.Error(err.Error())
7575
}

output/text.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ func (t *Text) Fatal(s string) {
4242

4343
// Event displays an event {
4444
func (t *Text) Event(event *model.Event) {
45-
fmt.Printf("%s %s %s (%s) %s\n", event.Who, event.What, event.Which, event.URL, humanize.Time(event.When))
45+
fmt.Printf("%s %s %s %s %s\n", event.Who, event.What, event.Which, event.URL, humanize.Time(event.When))
4646
}
4747

4848
// StarLine displays a star in one line

0 commit comments

Comments
 (0)