From 0e8cef246ef96b579f6827983a623aae85b385db Mon Sep 17 00:00:00 2001 From: Mike Evans Date: Fri, 7 Jan 2011 14:05:07 +0000 Subject: [PATCH] Fixed some typos. Please enter the commit message for your changes. Lines starting git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@20035 57a11ea4-9604-0410-9ed3-97b8803252fd --- contrib/rapid2gnucash.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/contrib/rapid2gnucash.py b/contrib/rapid2gnucash.py index 59f9efd3fd..76cfd698b5 100755 --- a/contrib/rapid2gnucash.py +++ b/contrib/rapid2gnucash.py @@ -29,7 +29,7 @@ We need to remove first line and totals Format needs to be: #id,date_opened,vendor_id,billing_id,notes,date,desc,action,account,quantity,price,disc_type,disc_how,discount,taxable,taxincluded,tax_table,date_posted,due_date,account_posted,memo_posted,accu_splits, -Not all fields need to have values but the delimiters (,) do. +Not all fields need to have values but the delimiters (,) do have to be present. Some fields are compulsory: id, vendor_id, action, quantity, price, taxable ''' import sys @@ -40,13 +40,13 @@ try: INFILE=sys.argv[1] except: print "No input files specified." - print "Useage: Useage: rapid2gnucash.py DOWNLOADED_BASKET.csv \"ORDER_NUMBER\"" + print "Usage: rapid2gnucash.py DOWNLOADED_BASKET.csv \"ORDER_NUMBER\"" quit(1) try: INV_ID=sys.argv[2] except: print "No order number specified." - print "Useage: Useage: rapid2gnucash.py DOWNLOADED_BASKET.csv \"ORDER_NUMBER\"" + print "Useage: rapid2gnucash.py DOWNLOADED_BASKET.csv \"ORDER_NUMBER\"" quit(1) try: ACCOUNT=sys.argv[3]