From a36cbde1069e3874a98f973cee0c77a15cdc907a Mon Sep 17 00:00:00 2001 From: David Hampton Date: Tue, 13 Jun 2006 00:14:26 +0000 Subject: [PATCH] Quote the F::Q version number so that it will be correctly parsed as a string. git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@14353 57a11ea4-9604-0410-9ed3-97b8803252fd --- ChangeLog | 5 +++++ src/quotes/gnc-fq-check.in | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index 149be99b36..396f1b4959 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2006-06-12 David Hampton + + * src/quotes/gnc-fq-check.in: Quote the F::Q version number so + that it will be correctly parsed as a string. + 2006-06-09 David Hampton * doc/examples/*.qif: Tell subversion these files are text. diff --git a/src/quotes/gnc-fq-check.in b/src/quotes/gnc-fq-check.in index 630c0c65ca..1d4754c51c 100644 --- a/src/quotes/gnc-fq-check.in +++ b/src/quotes/gnc-fq-check.in @@ -84,7 +84,7 @@ my @sources = $quoter->sources(); foreach my $source (@sources) { push(@qsources, "\"$source\""); } -printf "(%s %s)\n", $Finance::Quote::VERSION, join(" ", qq/@qsources/); +printf "(\"%s\" %s)\n", $Finance::Quote::VERSION, join(" ", qq/@qsources/); ## Local Variables: ## mode: perl