add friendly error message when the git python module can't be found

also hides the exception
master-GE
Josh 2013-02-21 16:08:18 +00:00
parent 07d0357bee
commit 6d037cc7a4
1 changed files with 2 additions and 1 deletions

View File

@ -15,7 +15,8 @@ def repositoryWithPath (path):
result = GitRepository(repo, path)
except ImportError, exception:
print "Failed to import git, please install http://gitorious.org/git-python"
raise exception
print "Use sudo apt-get install python-git for Ubuntu/Debian"
print "Use sudo yum install GitPython for Fedora/RHEL/CentOS"
except:
result = SnapshotRepository('', path)