pombreda / django-hotclub

Automatically exported from code.google.com/p/django-hotclub
MIT License
0 stars 0 forks source link

pinax virtualenv should include a pydoc #208

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
Not sure if this is a pinax issue or virtualenv: on an OS X 10.5 system 
/usr/bin/pydoc uses 
#!/usr/bin/python so it will miss the virtualenv packages. This can be fixed by 
adding pinax-
env/bin/pydoc as:

#!/usr/bin/env python

import pydoc
if __name__ == '__main__':
    pydoc.cli()

Original issue reported on code.google.com by adamsc@gmail.com on 21 Mar 2009 at 10:39

GoogleCodeExporter commented 9 years ago
Since Pinax uses virtualenv for its pinax-boot.py this should be fixed in 
virtualenv.

Original comment by leidel on 21 Mar 2009 at 11:29

GoogleCodeExporter commented 9 years ago
Just in case anyone else encounters this, here's the virtualenv bug 
https://bugs.launchpad.net/virtualenv/+bug/315990

Original comment by adamsc@gmail.com on 21 Mar 2009 at 11:37