[IMP] Do not want humanReadable barcodes

bzr revid: jco@openerp.com-20140326163257-12c6kvvk4ben8kma
This commit is contained in:
Josse Colpaert 2014-03-26 17:32:57 +01:00
parent c91379260d
commit ee7a5bb56d
1 changed files with 1 additions and 1 deletions

View File

@ -83,7 +83,7 @@ class ReportController(Controller):
try:
width, height = int(width), int(height)
barcode = createBarcodeDrawing(
type, value=value, format='png', width=width, height=height, humanReadable=True
type, value=value, format='png', width=width, height=height
)
barcode = barcode.asString('png')
except (ValueError, AttributeError):