fixed issue 996

This commit is contained in:
mdipierro
2012-09-11 09:53:08 -05:00
parent 7356c122de
commit 314278ac69
3 changed files with 5 additions and 5 deletions
+3 -3
View File
@@ -15,10 +15,10 @@ from gluon.utils import web2py_uuid
from glob import glob
import shutil
import platform
try:
from git import *
try:
from git import *
have_git = True
except ImportError:
except ImportError:
have_git = False
GIT_MISSING = 'requires python-git module, but not installed or incompatible version'