diff options
| author | Carl Hetherington <cth@carlh.net> | 2015-07-17 13:52:29 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2015-07-17 15:40:55 +0100 |
| commit | b00389305af83dfd1e3b41ab3b108cb591f18c5d (patch) | |
| tree | 3a369aa9607a8cab92236bf22e779a826edecf55 /src/lib/job.cc | |
| parent | c6b2624c1965740fa7b5d2230baf20156ff34151 (diff) | |
Make a generic base for uploaders and move the SCP code into a subclass of that.
Diffstat (limited to 'src/lib/job.cc')
| -rw-r--r-- | src/lib/job.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/job.cc b/src/lib/job.cc index 71e4c3446..8c46b4962 100644 --- a/src/lib/job.cc +++ b/src/lib/job.cc @@ -330,7 +330,7 @@ Job::status () const } else if (finished_ok ()) { s << String::compose (_("OK (ran for %1)"), seconds_to_hms (_ran_for)); } else if (finished_in_error ()) { - s << String::compose (_("Error (%1)"), error_summary ()); + s << String::compose (_("Error: %1"), error_summary ()); } else if (finished_cancelled ()) { s << _("Cancelled"); } |
