gnucash maint: [QIF import] fix misplaced paren.

John Ralls jralls at code.gnucash.org
Sun Mar 27 22:45:23 EDT 2022


Updated	 via  https://github.com/Gnucash/gnucash/commit/9a50be4c (commit)
	from  https://github.com/Gnucash/gnucash/commit/be8f798f (commit)



commit 9a50be4c5d69e4407d5ce563ebd3ebf1816bb314
Author: John Ralls <jralls at ceridwen.us>
Date:   Sun Mar 27 19:45:04 2022 -0700

    [QIF import] fix misplaced paren.

diff --git a/gnucash/import-export/qif-imp/qif-dialog-utils.scm b/gnucash/import-export/qif-imp/qif-dialog-utils.scm
index a297a4341..1e8500c27 100644
--- a/gnucash/import-export/qif-imp/qif-dialog-utils.scm
+++ b/gnucash/import-export/qif-imp/qif-dialog-utils.scm
@@ -741,12 +741,12 @@
                           ;; compatible with the QIF type?
                           (and (string=? s (caddr elt))
                                (not (and (string? qif-type)
-                                         (not (currency_ns? (cadr elt))
+                                         (not (currency_ns? (cadr elt)))
                                          (or (string-ci=? qif-type "stock")
                                              (string-ci=? qif-type "etf")
                                              (string-ci=? qif-type "mutual fund")
                                              (string-ci=? qif-type "index")
-)))))
+))))
                         prefs)
                    #f))))
         ;; If a preferences match was found, use its namespace.



Summary of changes:
 gnucash/import-export/qif-imp/qif-dialog-utils.scm | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)



More information about the gnucash-changes mailing list