summaryrefslogtreecommitdiffstats
path: root/func/utils.py
diff options
context:
space:
mode:
authorSteve 'Ashcrow' Milner <stevem@gnulinux.net>2008-01-13 14:35:45 -0500
committerSteve 'Ashcrow' Milner <stevem@gnulinux.net>2008-01-13 14:35:45 -0500
commitb77fbdd90f46b3d1602aa43e99abec096d93888e (patch)
tree9d8ac00601e056ac79f5679b88cc19bb65293190 /func/utils.py
parent63170952d465a8acf8355e7b346733e4f6ddcace (diff)
downloadthird_party-func-b77fbdd90f46b3d1602aa43e99abec096d93888e.tar.gz
third_party-func-b77fbdd90f46b3d1602aa43e99abec096d93888e.tar.xz
third_party-func-b77fbdd90f46b3d1602aa43e99abec096d93888e.zip
removed a lot of misplaced shebangs.
Diffstat (limited to 'func/utils.py')
-rwxr-xr-xfunc/utils.py5
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)
-
-