sdementen / piecash

Pythonic interface to GnuCash SQL documents
Other
290 stars 73 forks source link

Error in online docs #128

Closed dpotter4 closed 4 years ago

dpotter4 commented 5 years ago

I just wanted to point out an error I found in the online documentation. See https://piecash.readthedocs.io/en/master/tutorial/index_existing.html .

It says regarding backups "When opening in full access (readonly=False), piecash will automatically create a backup file named filename.piecash_YYYYMMDD_HHMMSS with the original file. To avoid creating the backup file, specificy backup=False as: book = piecash.open_book("existing_file.gnucash", readonly=False, backup=False)".

This should read: book = piecash.open_book("existing_file.gnucash", readonly=False, do_backup=False .

Thanks for the great work in producing this software. I have found it extremely useful.

sdementen commented 5 years ago

You're totally right, well spotted! Can you issue a pull request to fix it?