Hello, all. 

The MainWindow.py and Links.py scripts both begin with a she-band line
as follows:

        #! /usr/bin env python

This is incorrect, as the whitespace causes the interpreter on these to
be env rather than python. Attached is a patch that replaces this space
with a forward slash, thereby making these use the proper interpreter
(wherever python might be in the user's PATH).

Thanks.
-- 
Peter Gordon (codergeek42)
GnuPG Public Key ID: 0xFFC19479 / Fingerprint:
  DD68 A414 56BD 6368 D957 9666 4268 CB7A FFC1 9479
My Blog: http://thecodergeek.com/blog/
--- labyrinth-0.3/src/Links.py.old	2006-11-15 21:56:09.000000000 -0800
+++ labyrinth-0.3/src/Links.py	2006-11-15 21:56:18.000000000 -0800
@@ -1,4 +1,4 @@
-#! /usr/bin env python
+#! /usr/bin/env python
 
 # Link.py
 # This file is part of Labyrinth
--- labyrinth-0.3/src/MainWindow.py.old	2006-11-15 21:56:31.000000000 -0800
+++ labyrinth-0.3/src/MainWindow.py	2006-11-15 21:56:44.000000000 -0800
@@ -1,4 +1,4 @@
-#! /usr/bin env python
+#! /usr/bin/env python
 
 # MainWindow.py
 # This file is part of Labyrinth

Attachment: signature.asc
Description: This is a digitally signed message part

Reply via email to