Raising the right error when wrong charcode is used

This commit is contained in:
Kristi 2015-04-20 10:58:04 +01:00
parent 122ff9a363
commit 517435efad
1 changed files with 1 additions and 1 deletions

View File

@ -168,7 +168,7 @@ class Escpos:
elif code.upper() == "THAI18":
self._raw(CHARCODE_THAI18)
else:
raise CharCode_error()
raise CharCodeError()
def barcode(self, code, bc, width, height, pos, font):
""" Print Barcode """