Skip to content

Commit

Permalink
Use proper format syntax
Browse files Browse the repository at this point in the history
  • Loading branch information
christopherlam committed Dec 4, 2020
1 parent c094c07 commit a2ef6ed
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion gnucash/report/html-text.scm
Expand Up @@ -133,7 +133,7 @@
(apply string-append
(gnc:html-document-tree-collapse rendered-elt)))
(#t
(format "hold on there podner. form='~s'\n" rendered-elt)
(format #f "hold on there podner. form=~s\n" rendered-elt)
""))))
entities))))

Expand Down
2 changes: 1 addition & 1 deletion libgnucash/app-utils/date-utilities.scm
Expand Up @@ -68,7 +68,7 @@
(gnc-print-time64 (gnc-mktime datevec) "%Y"))

(define (gnc:date-get-quarter-string datevec)
(format #f "Q~d" (gnc:date-get-quarter datevec)))
(format #f "Q~a" (gnc:date-get-quarter datevec)))

(define (gnc:date-get-quarter-year-string datevec)
(string-append
Expand Down

0 comments on commit a2ef6ed

Please sign in to comment.