1
0
mirror of https://github.com/JoelBender/modpypes synced 2025-10-19 22:08:20 +08:00

Python3 hocus pocus and bump the version number slightly

This commit is contained in:
Joel Bender 2016-04-21 10:27:41 -04:00
parent 6e69b01475
commit f9b352bb6a
2 changed files with 4 additions and 4 deletions

View File

@ -2,7 +2,7 @@
__author__ = 'Joel Bender' __author__ = 'Joel Bender'
__email__ = 'joel@carrickbender.com' __email__ = 'joel@carrickbender.com'
__version__ = '0.2' __version__ = '0.2.1'
import pdu from . import pdu
import app from . import app

View File

@ -11,7 +11,7 @@ from bacpypes.debugging import class_debugging, ModuleLogger
from bacpypes.comm import PDU, Client, Server, ServiceAccessPoint, bind from bacpypes.comm import PDU, Client, Server, ServiceAccessPoint, bind
from bacpypes.tcp import TCPClientDirector, TCPServerDirector, StreamToPacket from bacpypes.tcp import TCPClientDirector, TCPServerDirector, StreamToPacket
from pdu import MPDU, request_types, response_types, ExceptionResponse from .pdu import MPDU, request_types, response_types, ExceptionResponse
# some debugging # some debugging
_debug = 0 _debug = 0