Remore _ from exceptions module name.

This commit is contained in:
Mikaël Ates 2016-02-24 15:54:54 +01:00
parent e43c8309f7
commit 000951a2d3
5 changed files with 4 additions and 4 deletions

View File

@ -27,7 +27,7 @@
'''
from librfid._exceptions import MalformedDataError
from librfid.exceptions import MalformedDataError
def inventory(response):

View File

@ -31,7 +31,7 @@ import librfid.core_standard
from librfid.utils import get_length_on_2_bytes, get_crc_16_CCITT
from librfid._exceptions import (UnknownReaderTypeException, UnknownReaderException,
from librfid.exceptions import (UnknownReaderTypeException, UnknownReaderException,
BadLengthMessageException, BadCRCException,
CommandResponseCodeMismatchException, UnknownReaderException,
StandardResponseError, UnknownResponseErrorType,

View File

@ -27,7 +27,7 @@
'''
from librfid._exceptions import MalformedDataError, BadParameterException
from librfid.exceptions import MalformedDataError, BadParameterException
from librfid.utils import get_integer_on_two_bytes, hex_to_int

View File

@ -25,7 +25,7 @@
import crc16
from binascii import unhexlify
from librfid._exceptions import OverheadException
from librfid.exceptions import OverheadException
def get_length_on_2_bytes(string):