parse: remove uses of from module import *
Since there is now both an action class named "vendor" and a message class
named "vendor" they clash when imported into the same namespace.
diff --git a/src/python/oftest/controller.py b/src/python/oftest/controller.py
index 31da722..255e5f0 100644
--- a/src/python/oftest/controller.py
+++ b/src/python/oftest/controller.py
@@ -255,7 +255,7 @@
if self.keep_alive:
if hdr.type == of10.cstruct.OFPT_ECHO_REQUEST:
self.logger.debug("Responding to echo request")
- rep = echo_reply()
+ rep = of10.message.echo_reply()
rep.header.xid = hdr.xid
# Ignoring additional data
self.message_send(rep.pack(), zero_xid=True)