Skip to content

Commit

Permalink
Fix pep8
Browse files Browse the repository at this point in the history
  • Loading branch information
Sandy Carter committed Jul 18, 2014
1 parent 30f4ace commit 69a1c7d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions exportsage50/wizard/exportsage50.py
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ def create_report(self, cr, uid, ids, context=None):
for line in line_obj.browse(cr, uid, data['invoice_ids'], context=context):
# start tag for invoice lines
output += '<SalInvoice>''\n'
#informations sur le client
# informations sur le client
costumer_name = line.partner_id.name
onetimefield = ""
contact_name = line.partner_id.name or ""
Expand Down Expand Up @@ -131,7 +131,7 @@ def create_report(self, cr, uid, ids, context=None):
sale_invoice = ','.join(['"%s"' % one_field for one_field in fields_sale_invoice])
output += sale_invoice.encode('UTF-8') + '\n'
product_line_invoice_with_tax = ""
#Sale invoice detail lines
# Sale invoice detail lines
product_ids = account_invoice_line_obj.search(cr,
uid,
[('invoice_id', '=', line.id)],
Expand Down

0 comments on commit 69a1c7d

Please sign in to comment.