Browse Source

FIX double dot in filename

pull/78/head
Alexis de Lattre 8 years ago
parent
commit
b702d15a29
  1. 2
      report_py3o/py3o_parser.py

2
report_py3o/py3o_parser.py

@ -197,7 +197,7 @@ class Py3oParser(report_sxw):
# ... but odoo wants the whole data in memory anyways :) # ... but odoo wants the whole data in memory anyways :)
res = fd.read() res = fd.read()
return res, "." + filetype
return res, filetype
def create(self, cr, uid, ids, data, context=None): def create(self, cr, uid, ids, data, context=None):
""" Override this function to handle our py3o report """ Override this function to handle our py3o report

Loading…
Cancel
Save