File shebang.patch of Package python-Cheetah

diff -ur Cheetah-2.4.4.org/cheetah/DirectiveAnalyzer.py Cheetah-2.4.4/cheetah/DirectiveAnalyzer.py
--- Cheetah-2.4.4.org/cheetah/DirectiveAnalyzer.py	2010-07-02 05:17:47.000000000 +0200
+++ Cheetah-2.4.4/cheetah/DirectiveAnalyzer.py	2013-03-16 09:00:36.072839268 +0100
@@ -1,4 +1,3 @@
-#!/usr/bin/env python
 
 import os
 import pprint
diff -ur Cheetah-2.4.4.org/cheetah/ImportHooks.py Cheetah-2.4.4/cheetah/ImportHooks.py
--- Cheetah-2.4.4.org/cheetah/ImportHooks.py	2010-07-02 05:17:47.000000000 +0200
+++ Cheetah-2.4.4/cheetah/ImportHooks.py	2013-03-16 09:00:36.064839457 +0100
@@ -1,4 +1,3 @@
-#!/usr/bin/env python
 
 """
 Provides some import hooks to allow Cheetah's .tmpl files to be imported
diff -ur Cheetah-2.4.4.org/cheetah/NameMapper.py Cheetah-2.4.4/cheetah/NameMapper.py
--- Cheetah-2.4.4.org/cheetah/NameMapper.py	2010-07-02 05:17:48.000000000 +0200
+++ Cheetah-2.4.4/cheetah/NameMapper.py	2013-03-16 09:00:36.064839457 +0100
@@ -1,4 +1,3 @@
-#!/usr/bin/env python
 """This module supports Cheetah's optional NameMapper syntax.
 
 Overview
diff -ur Cheetah-2.4.4.org/cheetah/Parser.py Cheetah-2.4.4/cheetah/Parser.py
--- Cheetah-2.4.4.org/cheetah/Parser.py	2010-07-02 05:17:48.000000000 +0200
+++ Cheetah-2.4.4/cheetah/Parser.py	2013-03-16 09:00:36.072839268 +0100
@@ -1,4 +1,3 @@
-#!/usr/bin/env python
 """
 Parser classes for Cheetah's Compiler
 
diff -ur Cheetah-2.4.4.org/cheetah/Servlet.py Cheetah-2.4.4/cheetah/Servlet.py
--- Cheetah-2.4.4.org/cheetah/Servlet.py	2010-07-02 05:17:47.000000000 +0200
+++ Cheetah-2.4.4/cheetah/Servlet.py	2013-03-16 09:00:36.064839457 +0100
@@ -1,4 +1,3 @@
-#!/usr/bin/env python
 '''
 Provides an abstract Servlet baseclass for Cheetah's Template class
 '''
diff -ur Cheetah-2.4.4.org/cheetah/Tests/Analyzer.py Cheetah-2.4.4/cheetah/Tests/Analyzer.py
--- Cheetah-2.4.4.org/cheetah/Tests/Analyzer.py	2010-07-02 05:17:47.000000000 +0200
+++ Cheetah-2.4.4/cheetah/Tests/Analyzer.py	2013-03-16 09:00:36.052839741 +0100
@@ -1,4 +1,3 @@
-#!/usr/bin/env python
 
 import unittest
 
diff -ur Cheetah-2.4.4.org/cheetah/Tests/CheetahWrapper.py Cheetah-2.4.4/cheetah/Tests/CheetahWrapper.py
--- Cheetah-2.4.4.org/cheetah/Tests/CheetahWrapper.py	2010-09-16 20:21:36.000000000 +0200
+++ Cheetah-2.4.4/cheetah/Tests/CheetahWrapper.py	2013-03-16 09:00:36.056839646 +0100
@@ -1,4 +1,3 @@
-#!/usr/bin/env python
 '''
 Tests for the 'cheetah' command.
 
diff -ur Cheetah-2.4.4.org/cheetah/Tests/Cheps.py Cheetah-2.4.4/cheetah/Tests/Cheps.py
--- Cheetah-2.4.4.org/cheetah/Tests/Cheps.py	2010-07-02 05:17:47.000000000 +0200
+++ Cheetah-2.4.4/cheetah/Tests/Cheps.py	2013-03-16 09:00:36.052839741 +0100
@@ -1,4 +1,3 @@
-#!/usr/bin/env python
 
 import unittest
 
diff -ur Cheetah-2.4.4.org/cheetah/Tests/Filters.py Cheetah-2.4.4/cheetah/Tests/Filters.py
--- Cheetah-2.4.4.org/cheetah/Tests/Filters.py	2010-07-02 05:17:47.000000000 +0200
+++ Cheetah-2.4.4/cheetah/Tests/Filters.py	2013-03-16 09:00:36.052839740 +0100
@@ -1,4 +1,3 @@
-#!/usr/bin/env python
 
 import sys
 import unittest
diff -ur Cheetah-2.4.4.org/cheetah/Tests/Misc.py Cheetah-2.4.4/cheetah/Tests/Misc.py
--- Cheetah-2.4.4.org/cheetah/Tests/Misc.py	2010-07-02 05:17:47.000000000 +0200
+++ Cheetah-2.4.4/cheetah/Tests/Misc.py	2013-03-16 09:00:36.056839646 +0100
@@ -1,4 +1,3 @@
-#!/usr/bin/env python
 
 import unittest
 
diff -ur Cheetah-2.4.4.org/cheetah/Tests/NameMapper.py Cheetah-2.4.4/cheetah/Tests/NameMapper.py
--- Cheetah-2.4.4.org/cheetah/Tests/NameMapper.py	2010-09-16 20:21:36.000000000 +0200
+++ Cheetah-2.4.4/cheetah/Tests/NameMapper.py	2013-03-16 09:00:36.064839457 +0100
@@ -1,4 +1,3 @@
-#!/usr/bin/env python
 
 import sys
 import types
diff -ur Cheetah-2.4.4.org/cheetah/Tests/Parser.py Cheetah-2.4.4/cheetah/Tests/Parser.py
--- Cheetah-2.4.4.org/cheetah/Tests/Parser.py	2010-07-02 05:17:47.000000000 +0200
+++ Cheetah-2.4.4/cheetah/Tests/Parser.py	2013-03-16 09:00:36.052839741 +0100
@@ -1,4 +1,3 @@
-#!/usr/bin/env python
 
 import unittest
 
diff -ur Cheetah-2.4.4.org/cheetah/Tests/Performance.py Cheetah-2.4.4/cheetah/Tests/Performance.py
--- Cheetah-2.4.4.org/cheetah/Tests/Performance.py	2010-07-02 05:17:47.000000000 +0200
+++ Cheetah-2.4.4/cheetah/Tests/Performance.py	2013-03-16 09:00:36.064839457 +0100
@@ -1,4 +1,3 @@
-#!/usr/bin/env python
 
 import hotshot
 import hotshot.stats
diff -ur Cheetah-2.4.4.org/cheetah/Tests/Regressions.py Cheetah-2.4.4/cheetah/Tests/Regressions.py
--- Cheetah-2.4.4.org/cheetah/Tests/Regressions.py	2010-07-02 05:17:47.000000000 +0200
+++ Cheetah-2.4.4/cheetah/Tests/Regressions.py	2013-03-16 09:00:36.052839741 +0100
@@ -1,4 +1,3 @@
-#!/usr/bin/env python
 
 import Cheetah.NameMapper 
 import Cheetah.Template
diff -ur Cheetah-2.4.4.org/cheetah/Tests/SyntaxAndOutput.py Cheetah-2.4.4/cheetah/Tests/SyntaxAndOutput.py
--- Cheetah-2.4.4.org/cheetah/Tests/SyntaxAndOutput.py	2010-12-13 04:44:59.000000000 +0100
+++ Cheetah-2.4.4/cheetah/Tests/SyntaxAndOutput.py	2013-03-16 09:00:36.064839457 +0100
@@ -1,4 +1,3 @@
-#!/usr/bin/env python
 # -*- coding: latin-1 -*-
 
 '''
diff -ur Cheetah-2.4.4.org/cheetah/Tests/Template.py Cheetah-2.4.4/cheetah/Tests/Template.py
--- Cheetah-2.4.4.org/cheetah/Tests/Template.py	2010-07-02 05:17:47.000000000 +0200
+++ Cheetah-2.4.4/cheetah/Tests/Template.py	2013-03-16 09:00:36.052839741 +0100
@@ -1,4 +1,3 @@
-#!/usr/bin/env python
 
 import pdb
 import sys
diff -ur Cheetah-2.4.4.org/cheetah/Tests/Test.py Cheetah-2.4.4/cheetah/Tests/Test.py
--- Cheetah-2.4.4.org/cheetah/Tests/Test.py	2010-07-02 05:17:47.000000000 +0200
+++ Cheetah-2.4.4/cheetah/Tests/Test.py	2013-03-16 09:00:36.056839646 +0100
@@ -1,4 +1,3 @@
-#!/usr/bin/env python
 '''
 Core module of Cheetah's Unit-testing framework
 
diff -ur Cheetah-2.4.4.org/cheetah/Tests/Unicode.py Cheetah-2.4.4/cheetah/Tests/Unicode.py
--- Cheetah-2.4.4.org/cheetah/Tests/Unicode.py	2010-07-02 05:17:47.000000000 +0200
+++ Cheetah-2.4.4/cheetah/Tests/Unicode.py	2013-03-16 09:00:35.968841705 +0100
@@ -1,4 +1,3 @@
-#!/usr/bin/env python
 # -*- encoding: utf8 -*-
 
 from Cheetah.Template import Template
diff -ur Cheetah-2.4.4.org/cheetah/Utils/Misc.py Cheetah-2.4.4/cheetah/Utils/Misc.py
--- Cheetah-2.4.4.org/cheetah/Utils/Misc.py	2010-07-02 05:17:47.000000000 +0200
+++ Cheetah-2.4.4/cheetah/Utils/Misc.py	2013-03-16 09:00:36.064839457 +0100
@@ -1,4 +1,3 @@
-#!/usr/bin/env python
 """
     Miscellaneous functions/objects used by Cheetah but also useful standalone.
 """ 
openSUSE Build Service is sponsored by