diff options
author | Peter von Kaehne <refdoc@gmx.net> | 2013-02-14 03:08:38 +0000 |
---|---|---|
committer | Peter von Kaehne <refdoc@gmx.net> | 2013-02-14 03:08:38 +0000 |
commit | d7b4b5662cd3310ca1d5abbcebfe9ecc889869ba (patch) | |
tree | 90c537c9f4a0a3d4c9cb66447570e68d4dcdfc24 /modules/conf | |
parent | 7ce46016be9eac840da45a7a26167c315163028f (diff) | |
download | sword-tools-d7b4b5662cd3310ca1d5abbcebfe9ecc889869ba.tar.gz |
correction of missing semicolon
git-svn-id: https://www.crosswire.org/svn/sword-tools/trunk@413 07627401-56e2-0310-80f4-f8cd0041bdcd
Diffstat (limited to 'modules/conf')
-rwxr-xr-x | modules/conf/confmaker.pl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/conf/confmaker.pl b/modules/conf/confmaker.pl index 4ae23c5..55d0478 100755 --- a/modules/conf/confmaker.pl +++ b/modules/conf/confmaker.pl @@ -47,7 +47,7 @@ binmode (STDOUT,":utf8"); if (scalar(@ARGV) < 1) { print "\nconfmaker.pl -- - provides a initial conf file for a new module by analysing given OSIS xml file. \n Syntax: confmaker.pl <osis XML file> [-o conf output file] \n"; print "- Arguments in braces < > are required. Arguments in brackets [ ] are optional.\n"; - print "- If no -o option is specified <STDOUT> is used.\n" + print "- If no -o option is specified <STDOUT> is used.\n"; print "- The script can currently produce a valid conf file for OSIS bibles, but not for any other import formats.\n"; exit (-1); } |