Cliff Wells wrote: > Is there a particular reason paster uses > > #!/usr/bin/python > > rather than > > #!/usr/bin/env python > > Having an absolute path to a system directory prevents symlinking a > different version of python in a user directory, ignores PATH, etc. In > short, it seems the wrong thing to do on Unix.
It does what Setuptools does -- Paste itself doesn't create that shebang line. This is actually quite important for virtualenv scripts, as it's what selects the environment that you are running in. -- Ian Bicking : [EMAIL PROTECTED] : http://blog.ianbicking.org --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "pylons-discuss" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/pylons-discuss?hl=en -~----------~----~----~----~------~----~------~--~---
