blob: 25285f999f2139b78aa7c76be10256c43b935618 [file] [log] [blame]
Matteo Scandolo48d3d2d2017-08-08 13:05:27 -07001
2# Copyright 2017-present Open Networking Foundation
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
7#
8# http://www.apache.org/licenses/LICENSE-2.0
9#
10# 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
16
A R Karthicke14fc022016-12-08 14:50:29 -080017#
Chetan Gaonkercfcce782016-05-10 10:10:42 -070018# Copyright 2016-present Ciena Corporation
19#
20# Licensed under the Apache License, Version 2.0 (the "License");
21# you may not use this file except in compliance with the License.
22# You may obtain a copy of the License at
A R Karthicke14fc022016-12-08 14:50:29 -080023#
Chetan Gaonkercfcce782016-05-10 10:10:42 -070024# http://www.apache.org/licenses/LICENSE-2.0
A R Karthicke14fc022016-12-08 14:50:29 -080025#
Chetan Gaonkercfcce782016-05-10 10:10:42 -070026# Unless required by applicable law or agreed to in writing, software
27# distributed under the License is distributed on an "AS IS" BASIS,
28# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
29# See the License for the specific language governing permissions and
30# limitations under the License.
31#
Chetan Gaonkerb424ff82016-03-08 12:11:12 -080032import os,sys
33##add the python path to lookup the utils
34working_dir = os.path.dirname(os.path.realpath(sys.argv[-1]))
35utils_dir = os.path.join(working_dir, '../fsm')
A R Karthicke14fc022016-12-08 14:50:29 -080036cli_dir = os.path.join(working_dir, '../cli')
Chetan Gaonkerb424ff82016-03-08 12:11:12 -080037__path__.append(utils_dir)
A R Karthicke14fc022016-12-08 14:50:29 -080038__path__.append(cli_dir)