From 6d037cc7a40708c95860e9311236dc76a40d0764 Mon Sep 17 00:00:00 2001 From: Josh Date: Thu, 21 Feb 2013 16:08:18 +0000 Subject: add friendly error message when the git python module can't be found also hides the exception --- (limited to 'scripts') diff --git a/scripts/builder/repository.py b/scripts/builder/repository.py index 7a44e47..2d4a12b 100644 --- a/scripts/builder/repository.py +++ b/scripts/builder/repository.py @@ -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) -- cgit v0.9.0.2