Merge pull request #7460 from home-assistant/fix/default-knx-port

Fix object type for default KNX port
pull/7448/merge
Robbie Trencheny 2017-05-05 18:03:46 -07:00 committed by GitHub
commit 6cc85adb81
1 changed files with 1 additions and 1 deletions

View File

@ -18,7 +18,7 @@ REQUIREMENTS = ['knxip==0.3.3']
_LOGGER = logging.getLogger(__name__)
DEFAULT_HOST = '0.0.0.0'
DEFAULT_PORT = '3671'
DEFAULT_PORT = 3671
DOMAIN = 'knx'
EVENT_KNX_FRAME_RECEIVED = 'knx_frame_received'