add sys path accton
diff --git a/oft b/oft
old mode 100644
new mode 100755
index bb02815..bab5b47
--- a/oft
+++ b/oft
@@ -33,6 +33,10 @@
     # Running from source tree
     sys.path.insert(0, PY_SRC_DIR)
 
+if os.path.exists(os.path.join(ROOT_DIR, 'accton')):
+    PY_ACCTON_DIR = os.path.join(ROOT_DIR, 'accton')
+    sys.path.insert(0, PY_ACCTON_DIR)
+    
 import oftest
 from oftest import config
 import oftest.ofutils