Fix issue with manually setting the encoding.

This commit is contained in:
Michael Elsdörfer 2016-08-26 15:14:02 +02:00
parent 87a6647053
commit 214aa0d363
1 changed files with 2 additions and 1 deletions

View File

@ -217,7 +217,8 @@ class Escpos(object):
if code.upper() == "AUTO":
self.magic.force_encoding = False
else:
self.magic.encoding = self.magic.codepage_sequence(code)
self.magic.codepage_sequence(code)
self.magic.encoding = code
self.magic.force_encoding = True
def barcode(self, code, bc, height=64, width=3, pos="BELOW", font="A", align_ct=True, function_type="A"):