We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c8d208a commit 727620dCopy full SHA for 727620d
cli/notifications.go
@@ -50,7 +50,7 @@ func (r *RootCmd) pauseNotifications() *serpent.Command {
50
NotifierPaused: true,
51
})
52
if err != nil {
53
- return xerrors.Errorf("unable to pause notifications %w", err)
+ return xerrors.Errorf("unable to pause notifications: %w", err)
54
}
55
56
_, _ = fmt.Fprintln(inv.Stderr, "Notifications are now paused.")
@@ -74,7 +74,7 @@ func (r *RootCmd) resumeNotifications() *serpent.Command {
74
NotifierPaused: false,
75
76
77
- return xerrors.Errorf("unable to resume notifications %w", err)
+ return xerrors.Errorf("unable to resume notifications: %w", err)
78
79
80
_, _ = fmt.Fprintln(inv.Stderr, "Notifications are now resumed.")
0 commit comments