Accept "CODABAR" as an alias for "NW7" in barcode()

This commit is contained in:
Stephan Sokolow 2014-05-22 00:48:24 -04:00 committed by Patrick Kanzler
parent e988873999
commit 3e89a10bed
1 changed files with 1 additions and 1 deletions

View File

@ -342,7 +342,7 @@ class Escpos(object):
self._raw(BARCODE_CODE39)
elif bc.upper() == "ITF":
self._raw(BARCODE_ITF)
elif bc.upper() == "NW7":
elif bc.upper() in ("NW7", "CODABAR"):
self._raw(BARCODE_NW7)
else:
raise BarcodeTypeError(bc)