[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Libcdio-pycdio-devel] Removing Shebangs
From: |
Jay Greguske |
Subject: |
[Libcdio-pycdio-devel] Removing Shebangs |
Date: |
Tue, 28 Jul 2009 14:29:54 -0400 |
User-agent: |
Thunderbird 2.0.0.21 (X11/20090310) |
Hello,
I'm interested in packaging pycdio for Fedora. While stepping through
that process I had a nitpick: there are #!/usr/bin/python lines in the
cdio.py and iso9660.py files which are unnecessary. This is because they
are python modules and there is no __main__ section to speak of. I've
attached a diff in case I'm not being clear enough.
Thanks for your time!
Regards,
- Jay
--- cdio.py
+++ cdio.py2
@@ -1,4 +1,3 @@
-#!/usr/bin/python
# $Id: cdio.py,v 1.6 2008/05/01 16:55:03 karl Exp $
#
# Copyright (C) 2006, 2008 Rocky Bernstein <address@hidden>
--- iso9660.py
+++ iso9660.py2
@@ -1,5 +1,3 @@
-#!/usr/bin/python
-#
# $Id: iso9660.py,v 1.12 2008/05/01 16:55:03 karl Exp $
#
# Copyright (C) 2006, 2008 Rocky Bernstein <address@hidden>
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- [Libcdio-pycdio-devel] Removing Shebangs,
Jay Greguske <=