commit | d8194f87a3ac3357ab20731b9590b6be219cdf69 | [log] [tgz] |
---|---|---|
author | Shad Ansari <shad@onlab.us> | Tue Jul 04 10:19:37 2017 -0700 |
committer | Shad Ansari <shad@onlab.us> | Tue Jul 04 10:20:06 2017 -0700 |
tree | 637956b315c5cdb5adb6669aed02f2465587357b | |
parent | 3fbd470c20c1a63241c563b4fa42285e283fdeb2 [diff] |
Fix improper import in asfvolt16 adapter Change-Id: I4dd91101bcc48e88709736515dbe13026f76bbb3
diff --git a/voltha/adapters/asfvolt16_olt/asfvolt16_device_handler.py b/voltha/adapters/asfvolt16_olt/asfvolt16_device_handler.py index ae0b41b..90d123b 100644 --- a/voltha/adapters/asfvolt16_olt/asfvolt16_device_handler.py +++ b/voltha/adapters/asfvolt16_olt/asfvolt16_device_handler.py
@@ -36,7 +36,7 @@ ofp_switch_features, ofp_desc, ofp_port from voltha.core.logical_device_agent import mac_str_to_tuple import voltha.core.flow_decomposer as fd -from voltha.adapters.asfvolt16.asfvolt16_rx_handler import Asfvolt16RxHandler +from voltha.adapters.asfvolt16_olt.asfvolt16_rx_handler import Asfvolt16RxHandler log = structlog.get_logger()
diff --git a/voltha/adapters/asfvolt16_olt/asfvolt16_olt.py b/voltha/adapters/asfvolt16_olt/asfvolt16_olt.py index 6ef04ce..7ea8ddb 100644 --- a/voltha/adapters/asfvolt16_olt/asfvolt16_olt.py +++ b/voltha/adapters/asfvolt16_olt/asfvolt16_olt.py
@@ -20,7 +20,7 @@ import structlog from voltha.adapters.iadapter import OltAdapter -from voltha.adapters.asfvolt16.asfvolt16_device_handler import Asfvolt16Handler +from voltha.adapters.asfvolt16_olt.asfvolt16_device_handler import Asfvolt16Handler log = structlog.get_logger()