Disable sendfile when running dev from vagrant.

Upgrade gunicorn.
Add BS3 classes to rendered markdown tables. Fixes #72
This commit is contained in:
Matthew Scragg 2015-08-30 19:17:51 -05:00
parent 24f681de89
commit f59e46c7df
4 changed files with 25 additions and 3 deletions

View file

@ -126,6 +126,10 @@ def in_virtualenv():
return hasattr(sys, 'real_prefix')
def in_vagrant():
return os.path.isdir("/vagrant")
def is_su():
return os.geteuid() == 0