diff options
author | Adrian Likins <alikins@redhat.com> | 2007-09-27 13:47:50 -0400 |
---|---|---|
committer | Adrian Likins <alikins@redhat.com> | 2007-09-27 13:47:50 -0400 |
commit | 064afab85ea8ce7df11ad0e4b92eab8b431c90e3 (patch) | |
tree | db5281c14ece624553b8d8061dfa07f941a8a881 /minion/utils.py | |
parent | 72f973619e507a240359ed87c6f3597ed8bf22b4 (diff) | |
download | func-064afab85ea8ce7df11ad0e4b92eab8b431c90e3.tar.gz func-064afab85ea8ce7df11ad0e4b92eab8b431c90e3.tar.xz func-064afab85ea8ce7df11ad0e4b92eab8b431c90e3.zip |
move logger and config_data to func/func
update modules that need new location
modules/func_module.py: update to use new logger/config locations,
also go ahead and register as a real module, to shut up the
start up. It shouldn't hurt anything
Some minor import reordering at a couple places (I try to keep
at least system import alphabetical)
Diffstat (limited to 'minion/utils.py')
-rwxr-xr-x | minion/utils.py | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/minion/utils.py b/minion/utils.py index 307141f..177d4ee 100755 --- a/minion/utils.py +++ b/minion/utils.py @@ -13,16 +13,17 @@ Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. """ import os +import socket import string import sys +import time import traceback import xmlrpclib -from func import certs + import codes -import socket -import time -import config_data +from func import certs +from func import config_data |