blob: c34e91577df2c892c1b85a18cc91017a6fbf9a72 [file] [log] [blame]
A R Karthicke14fc022016-12-08 14:50:29 -08001#
Chetan Gaonkercfcce782016-05-10 10:10:42 -07002# Copyright 2016-present Ciena Corporation
3#
4# Licensed under the Apache License, Version 2.0 (the "License");
5# you may not use this file except in compliance with the License.
6# You may obtain a copy of the License at
A R Karthicke14fc022016-12-08 14:50:29 -08007#
Chetan Gaonkercfcce782016-05-10 10:10:42 -07008# http://www.apache.org/licenses/LICENSE-2.0
A R Karthicke14fc022016-12-08 14:50:29 -08009#
Chetan Gaonkercfcce782016-05-10 10:10:42 -070010# Unless required by applicable law or agreed to in writing, software
11# distributed under the License is distributed on an "AS IS" BASIS,
12# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13# See the License for the specific language governing permissions and
14# limitations under the License.
15#
Chetan Gaonkerb424ff82016-03-08 12:11:12 -080016import os,sys
17##add the python path to lookup the utils
18working_dir = os.path.dirname(os.path.realpath(sys.argv[-1]))
19utils_dir = os.path.join(working_dir, '../fsm')
A R Karthicke14fc022016-12-08 14:50:29 -080020cli_dir = os.path.join(working_dir, '../cli')
Chetan Gaonkerb424ff82016-03-08 12:11:12 -080021__path__.append(utils_dir)
A R Karthicke14fc022016-12-08 14:50:29 -080022__path__.append(cli_dir)