branch: externals/calibre
commit de072fbfe9d0f7410b99b34f9b7d2d529c9fb530
Author: Kjartan Oli Agustsson <[email protected]>
Commit: Kjartan Oli Agustsson <[email protected]>
Remove period from the end of error message
* calibre-exec.el (calibre-exec--process-sentinel): Remove period from
the end of error message.
---
calibre-exec.el | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/calibre-exec.el b/calibre-exec.el
index 9e6cc34919..ed9e0f57aa 100644
--- a/calibre-exec.el
+++ b/calibre-exec.el
@@ -41,7 +41,7 @@ EVENT is the process event, see Info node
(progn
(kill-buffer calibre-exec--process-buffer)
(calibre-library--refresh t))
- (error "Calibre process failed. See %s for details."
calibre-exec--process-buffer))
+ (error "Calibre process failed. See %s for details"
calibre-exec--process-buffer))
(if calibre-exec--commands
(calibre-exec--next-command)
(setf calibre-exec--executing nil)))