6 lines
142 B
Python
6 lines
142 B
Python
|
#!/usr/bin/env python
|
||
|
|
||
|
# Fire up virtualenv
|
||
|
activate_this = "venv/bin/activate_this.py"
|
||
|
execfile(activate_this, dict(__file__=activate_this))
|