diff options
Diffstat (limited to 'func/utils.py')
-rwxr-xr-x | func/utils.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/func/utils.py b/func/utils.py index 8d9d383..de08ba9 100755 --- a/func/utils.py +++ b/func/utils.py @@ -17,6 +17,8 @@ import string 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 @@ -45,3 +47,5 @@ def daemonize(pidfile=None): if pidfile is not None: open(pidfile, "w").write(str(pid)) sys.exit(0) + + |