diff --git a/core/cli/packages.el b/core/cli/packages.el index c97e6ca7a..9c4c2a777 100644 --- a/core/cli/packages.el +++ b/core/cli/packages.el @@ -225,7 +225,9 @@ a list of packages that will be updated." (while (not (async-ready (caar futures))) (when (> time timeout) (print! (warn "A thread has timed out. The following packages were skipped:\n\n %s" - (string-join (cdar futures) ", "))) + (mapconcat (lambda (p) (plist-get p :package)) + (cdar futures) + ", "))) (throw 'timeout t)) (sleep-for 2) (cl-incf time)