shebang should be specific to python version (PEP394)

preferred form is #!/usr/bin/env python3 as gnucash now only works with
python3
This commit is contained in:
c-holtermann 2019-04-04 14:50:05 +02:00
parent e7d940ac3f
commit b06801185c
13 changed files with 13 additions and 13 deletions

View File

@ -1,4 +1,4 @@
#!/usr/bin/python
#!/usr/bin/env python3
# -*- coding: UTF-8 -*-
##@file

View File

@ -1,4 +1,4 @@
#!/usr/bin/env python
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
##@file

View File

@ -1,4 +1,4 @@
#!/usr/bin/env python
#!/usr/bin/env python3
# new_book_with_opening_balances.py -- Replicate the account structure of a
# book and apply basis opening balances from the original

View File

@ -1,4 +1,4 @@
#!/usr/bin/env python
#!/usr/bin/env python3
# Test file for price database stuff
# To update the price database call
# $PATH/gnucash --add-price-quotes $PATHTOFILE

View File

@ -1,4 +1,4 @@
#!/usr/bin/env python
#!/usr/bin/env python3
# Another test file for price database stuff
# To update the price database call
# $PATH/gnucash --add-price-quotes $PATHTOFILE

View File

@ -1,4 +1,4 @@
#!/usr/bin/env python
#!/usr/bin/env python3
# quotes_historic.py -- Example Script to read historic quote data into gnucash
#

View File

@ -1,4 +1,4 @@
#!/usr/bin/python
#!/usr/bin/env python3
'''

View File

@ -1,4 +1,4 @@
#!/usr/bin/env python
#!/usr/bin/env python3
## @file
# @brief Simple example for a book

View File

@ -1,4 +1,4 @@
#!/usr/bin/env python
#!/usr/bin/env python3
# simple_business_create.py -- Set up a set of books for business feature use
#

View File

@ -1,4 +1,4 @@
#!/usr/bin/env python
#!/usr/bin/env python3
# simple_invoice_insert.py -- Add an invoice to a set of books
#

View File

@ -1,4 +1,4 @@
#!/usr/bin/env python
#!/usr/bin/env python3
## @file
# @brief Example Script simple session
# @ingroup python_bindings_examples

View File

@ -1,4 +1,4 @@
#!/usr/bin/env python
#!/usr/bin/env python3
## @file
# @brief Example Script simple sqlite create
# @ingroup python_bindings_examples

View File

@ -1,4 +1,4 @@
#!/usr/bin/env python
#!/usr/bin/env python3
## @file
# @brief Creates a basic set of accounts and a couple of transactions
# @ingroup python_bindings_examples