HOTFIX bracode: use proper NUL character instead of unicode-string
This commit is contained in:
parent
e43e95bcff
commit
f76db4e0d4
|
@ -451,7 +451,7 @@ class Escpos(object):
|
||||||
raise BarcodeCodeError()
|
raise BarcodeCodeError()
|
||||||
|
|
||||||
if function_type.upper() == "A":
|
if function_type.upper() == "A":
|
||||||
self._raw("\x00")
|
self._raw(NUL)
|
||||||
|
|
||||||
def text(self, txt):
|
def text(self, txt):
|
||||||
""" Print alpha-numeric text
|
""" Print alpha-numeric text
|
||||||
|
|
Loading…
Reference in New Issue