diff options
| author | Carl Hetherington <cth@carlh.net> | 2015-12-04 02:02:05 +0000 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2015-12-04 02:02:05 +0000 |
| commit | 65260430ea2bb758dd0c2a011978ef834de902be (patch) | |
| tree | 00e6882b917d878cbaaff1652b69caf7a6d04e15 /src | |
| parent | e55c3a8bdc86e64818ef26224c472dde54a16740 (diff) | |
Tweak error message.
Diffstat (limited to 'src')
| -rw-r--r-- | src/lib/emailer.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/emailer.cc b/src/lib/emailer.cc index 4081c6115..c20cc897d 100644 --- a/src/lib/emailer.cc +++ b/src/lib/emailer.cc @@ -213,7 +213,7 @@ Emailer::send () CURLcode const r = curl_easy_perform (curl); if (r != CURLE_OK) { - throw KDMError (String::compose (_("Failed to send KDM email (%1)"), curl_easy_strerror (r))); + throw KDMError (String::compose (_("Failed to send email (%1)"), curl_easy_strerror (r))); } curl_slist_free_all (recipients); |
