You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
if package_common == 'yes':
(f, modpath, desc) = imp.find_module('fabfile', [COMMON_DIR])
if f is not None:
common = imp.load_module('common_fabfile', f, modpath, desc)
f.close()
execute(common.package_common_lib)
The load_module call is resetting env.gsmenv to the default: 'openbts'
I've tracked it down to the following:
The load_module call is resetting env.gsmenv to the default: 'openbts'