connectors/__init__.py
changeset 1680 6db967480b7d
parent 1571 486f94a8032c
child 1731 6ebd9c40b2be
--- a/connectors/__init__.py	Wed Apr 12 10:20:01 2017 +0000
+++ b/connectors/__init__.py	Thu Apr 20 13:01:45 2017 +0300
@@ -5,6 +5,7 @@
 # programming IEC 61131-3 automates supporting plcopen standard and CanFestival.
 #
 # Copyright (C) 2007: Edouard TISSERANT and Laurent BESSARD
+# Copyright (C) 2017: Andrey Skvortsov
 #
 # See COPYING file for copyrights details.
 #
@@ -25,9 +26,9 @@
 # Package initialisation
 
 from os import listdir, path
+import util.paths as paths
 
-
-_base_path = path.split(__file__)[0]
+_base_path = paths.AbsDir(__file__)
 
 
 def _GetLocalConnectorClassFactory(name):