diff options
author | Peter von Kaehne <refdoc@gmx.net> | 2014-12-09 14:27:57 +0000 |
---|---|---|
committer | Peter von Kaehne <refdoc@gmx.net> | 2014-12-09 14:27:57 +0000 |
commit | 8202163d6fc9d8447d524ad7769cb57add32a263 (patch) | |
tree | e0b0ef9c0e43042665f3de86b777aa8c64644cd2 | |
parent | 91d87336369b63181c7c05da08c11ea94b459f1d (diff) | |
download | sword-tools-8202163d6fc9d8447d524ad7769cb57add32a263.tar.gz |
corrected misplaced semicolon. Thanks to Nicolas Karolak
git-svn-id: https://www.crosswire.org/svn/sword-tools/trunk@489 07627401-56e2-0310-80f4-f8cd0041bdcd
-rwxr-xr-x | modules/perlconverters/unb2osis.pl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/perlconverters/unb2osis.pl b/modules/perlconverters/unb2osis.pl index d0de040..2e5c0b8 100755 --- a/modules/perlconverters/unb2osis.pl +++ b/modules/perlconverters/unb2osis.pl @@ -67,7 +67,7 @@ if (scalar(@ARGV) < 2) { $osisWork = $ARGV[0]; if ($ARGV[2] eq "-o") { - $outputFilename = "$ARGV[3];" + $outputFilename = "$ARGV[3]"; } else { $outputFilename = "$osisWork.osis.xml"; |