[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[shepherd] 04/05: comm: Add missing quotes in error message.
From: |
Ludovic Courtès |
Subject: |
[shepherd] 04/05: comm: Add missing quotes in error message. |
Date: |
Sat, 23 Jan 2016 22:20:27 +0000 |
civodul pushed a commit to branch master
in repository shepherd.
commit 66950964ce68bd13dbc3c6f6d889cf40024e005f
Author: Ludovic Courtès <address@hidden>
Date: Sat Jan 23 23:14:51 2016 +0100
comm: Add missing quotes in error message.
* modules/shepherd/comm.scm (report-command-error): Quote action name.
---
modules/shepherd/comm.scm | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/modules/shepherd/comm.scm b/modules/shepherd/comm.scm
index 37c3796..08fd689 100644
--- a/modules/shepherd/comm.scm
+++ b/modules/shepherd/comm.scm
@@ -162,7 +162,7 @@ command object."
(report-error (l10n "service '~a' could not be found")
service))
(('error ('version 0 _ ...) 'action-not-found action service)
- (report-error (l10n "service '~a' does not have an action ~a")
+ (report-error (l10n "service '~a' does not have an action '~a'")
service action))
(('error ('version 0 _ ...) 'action-exception action service
key (args ...))