diff options
Diffstat (limited to 'func/utils.py')
-rwxr-xr-x | func/utils.py | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/func/utils.py b/func/utils.py index de08ba9..4149885 100755 --- a/func/utils.py +++ b/func/utils.py @@ -1,5 +1,3 @@ -#!/usr/bin/python - """ Copyright 2007, Red Hat, Inc see AUTHORS @@ -18,7 +16,6 @@ import sys import traceback - # this is kind of handy, so keep it around for now # but we really need to fix out server side logging and error # reporting so we don't need it @@ -47,5 +44,3 @@ def daemonize(pidfile=None): if pidfile is not None: open(pidfile, "w").write(str(pid)) sys.exit(0) - - |