mirror of
https://github.com/asterisk/asterisk.git
synced 2026-05-03 11:56:49 +00:00
Review: https://reviewboard.asterisk.org/r/1891/ git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@369517 65c4cc65-6c06-0410-ace0-fbb531ad65f3
12 lines
185 B
Python
12 lines
185 B
Python
# $Id$
|
|
import imp
|
|
import sys
|
|
|
|
from inc_cfg import *
|
|
|
|
# Read configuration
|
|
cfg_file = imp.load_source("cfg_file", ARGS[1])
|
|
|
|
# Here where it all comes together
|
|
test = cfg_file.test_param
|