diff options
| author | Carl Hetherington <cth@carlh.net> | 2017-01-20 21:23:28 +0000 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2017-01-20 21:23:28 +0000 |
| commit | 0d5fc564792dc7ab5dd1a9025c85bd69b7b70fba (patch) | |
| tree | 1c897eb2dc67f9fa0b630ded10dacada03fb1d23 /src/tools | |
| parent | 82229a2fc3b0b244ce0987aa211737ca5f96085c (diff) | |
Some error message formatting tidy-ups.
Diffstat (limited to 'src/tools')
| -rw-r--r-- | src/tools/dcpomatic.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tools/dcpomatic.cc b/src/tools/dcpomatic.cc index 972436c47..2b6a62f11 100644 --- a/src/tools/dcpomatic.cc +++ b/src/tools/dcpomatic.cc @@ -507,7 +507,7 @@ private: } catch (BadSettingError& e) { error_dialog (this, wxString::Format (_("Bad setting for %s (%s)"), std_to_wx(e.setting()).data(), std_to_wx(e.what()).data())); } catch (std::exception& e) { - error_dialog (this, wxString::Format (_("Could not make DCP: %s"), std_to_wx(e.what()).data())); + error_dialog (this, wxString::Format (_("Could not make DCP: %s."), std_to_wx(e.what()).data())); } } |
