Commit 576d64fa authored by Ugur Yilmaz's avatar Ugur Yilmaz
Browse files

fix path of mock_tango_extension.py

parent 0283c107
Loading
Loading
Loading
Loading
Loading
+8 −5
Original line number Diff line number Diff line
@@ -12,6 +12,14 @@
# add these directories to sys.path here. If the directory is relative to the
# documentation root, use os.path.abspath to make it absolute, like shown here.
#


import os
import sys
sys.path.append(os.path.abspath('../../csp-lmc-common/'))
sys.path.append(os.path.abspath('../../csp-lmc-mid/'))

sys.path.append(os.path.abspath('./'))
# Import tango
try:
    import tango
@@ -28,11 +36,6 @@ autodoc_mock_imports = ['PyTango','run', 'DeviceMeta', 'command',
                 ]
autodoc_member_order = 'bysource'

import os
import sys
sys.path.append(os.path.abspath('../../csp-lmc-common/'))
sys.path.append(os.path.abspath('../../csp-lmc-mid/'))

import sphinx_rtd_theme

def setup(app):