Skip to content

Commit

Permalink
autoserv: repair global_config import.
Browse files Browse the repository at this point in the history
Signed-off-by: Jiří Župka <[email protected]>
  • Loading branch information
Jiří Župka authored and lmr committed Oct 2, 2012
1 parent 0835b0e commit 0c2abd3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions server/autoserv.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,8 @@
warnings.filterwarnings('ignore', 'logging module already imported')
atfork.stdlib_fixer.fix_logging_module()
except ImportError, e:
from autotest.client.shared import global_config
if global_config.global_config.get_config_value(
from autotest.client.shared.global_config import global_config
if global_config.get_config_value(
'AUTOSERV', 'require_atfork_module', type=bool, default=False):
print >>sys.stderr, 'Please run utils/build_externals.py'
print e
Expand Down

0 comments on commit 0c2abd3

Please sign in to comment.