aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBrian Dolbec <dolsen@gentoo.org>2013-06-11 21:07:08 -0700
committerBrian Dolbec <dolsen@gentoo.org>2013-11-21 22:02:36 -0800
commit393be04e10c617f80fe6918313c3bab02cb2d9c6 (patch)
tree596f3812cda719482551959e35d000ec5765b561
parentversion: Remove shebang (Python modules are not scripts) (diff)
downloadcatalyst-393be04e10c617f80fe6918313c3bab02cb2d9c6.tar.gz
catalyst-393be04e10c617f80fe6918313c3bab02cb2d9c6.tar.bz2
catalyst-393be04e10c617f80fe6918313c3bab02cb2d9c6.zip
main.py, lock.py, fileops.py remove shebangs
-rw-r--r--catalyst/fileops.py1
-rw-r--r--catalyst/lock.py3
-rw-r--r--catalyst/main.py1
3 files changed, 2 insertions, 3 deletions
diff --git a/catalyst/fileops.py b/catalyst/fileops.py
index 009bf1cd..e3a4ead5 100644
--- a/catalyst/fileops.py
+++ b/catalyst/fileops.py
@@ -1,4 +1,3 @@
-#!/usr/bin/python
# Maintained in full by:
# Catalyst Team <catalyst@gentoo.org>
diff --git a/catalyst/lock.py b/catalyst/lock.py
index d5d40d5e..8b4fc768 100644
--- a/catalyst/lock.py
+++ b/catalyst/lock.py
@@ -1,4 +1,5 @@
-#!/usr/bin/python
+
+
import os
import fcntl
import errno
diff --git a/catalyst/main.py b/catalyst/main.py
index a47dff7d..8546810c 100644
--- a/catalyst/main.py
+++ b/catalyst/main.py
@@ -1,4 +1,3 @@
-#!/usr/bin/python2 -OO
# Maintained in full by:
# Catalyst Team <catalyst@gentoo.org>