small typos/added pip gitpython to error messages.

This commit is contained in:
John Albietz 2013-02-06 15:09:10 -08:00
parent 2df4f3f231
commit 047c3c89d4

View File

@ -28,7 +28,8 @@ log = logging.getLogger(__name__)
def __virtual__(): def __virtual__():
''' '''
Only load if gitpython is available Only load if git-python is available
Try: pip install -U gitpython.
''' '''
if not isinstance(__opts__['gitfs_remotes'], list): if not isinstance(__opts__['gitfs_remotes'], list):
return False return False
@ -36,7 +37,8 @@ def __virtual__():
return False return False
if not HAS_GIT: if not HAS_GIT:
log.error('Git fileserver backend is enabled in configuration but ' log.error('Git fileserver backend is enabled in configuration but '
'could not be loaded, is git-python installed?') 'could not be loaded, is git-python installed?'
'Try: pip install -U gitpython')
return False return False
return 'git' return 'git'
@ -54,7 +56,7 @@ def _get_ref(repo, short):
def _wait_lock(lk_fn, dest): def _wait_lock(lk_fn, dest):
''' '''
if the write lock is there check to see if the file is acctually being if the write lock is there check to see if the file is actually being
written, if there is no change in the file size after a short sleep then written, if there is no change in the file size after a short sleep then
remove the lock and move forward. remove the lock and move forward.
''' '''