diff options
author | Robin Houston <robin.houston@gmail.com> | 2011-10-17 22:50:50 +0100 |
---|---|---|
committer | Robin Houston <robin.houston@gmail.com> | 2011-10-17 22:50:50 +0100 |
commit | bee01250d7b10b3254211bb34e90c631aa331caf (patch) | |
tree | 1c733f32f5124732472188d586302385c912fe4b | |
parent | 9db5b555814a53430371013a6aa0d4a949555437 (diff) |
Correct YAML syntax (add missing newline)
YAML files need to end with a newline, or they are invalid
(and some parsers will fail as a result, e.g. the Perl YAML
module).
This was causing the mySociety deployment script to fail.
-rw-r--r-- | config/general.yml-example | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/config/general.yml-example b/config/general.yml-example index 8c59b1b0e..dee393941 100644 --- a/config/general.yml-example +++ b/config/general.yml-example @@ -129,4 +129,5 @@ FORWARD_NONBOUNCE_RESPONSES_TO: user-support@localhost # http://code.google.com/p/wkhtmltopdf/downloads/list # If the command is not present, a text-only version will be rendered # instead. -HTML_TO_PDF_COMMAND: /usr/local/bin/wkhtmltopdf-amd64
\ No newline at end of file +HTML_TO_PDF_COMMAND: /usr/local/bin/wkhtmltopdf-amd64 + |