author | Josh <jokajak@gmail.com> | 2012-03-06 15:44:48 (UTC) |
---|---|---|
committer | Josh <jokajak@gmail.com> | 2012-03-06 15:44:48 (UTC) |
commit | 5115ce2faf3efdf2bec242d9c37d0524bf341a94 (patch) (unidiff) | |
tree | dc0a49441a2f473c8614d95f27c5e391334e7a6f /scripts | |
parent | ba9eff02a0ee404e9da1431e8ab6056b3f3b97f5 (diff) | |
download | clipperz-5115ce2faf3efdf2bec242d9c37d0524bf341a94.zip clipperz-5115ce2faf3efdf2bec242d9c37d0524bf341a94.tar.gz clipperz-5115ce2faf3efdf2bec242d9c37d0524bf341a94.tar.bz2 |
Check to make sure dulwich is available and print error
-rw-r--r-- | scripts/builder/repository.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/scripts/builder/repository.py b/scripts/builder/repository.py index 89db9a5..f3f7d6f 100644 --- a/scripts/builder/repository.py +++ b/scripts/builder/repository.py | |||
@@ -8,6 +8,8 @@ def repositoryWithPath (path): | |||
8 | 8 | ||
9 | repo = Repo(path) | 9 | repo = Repo(path) |
10 | result = GitRepository(repo, path) | 10 | result = GitRepository(repo, path) |
11 | except ImportError: | ||
12 | print "Failed to import dulwich, please install http://www.samba.org/~jelmer/dulwich/" | ||
11 | except: | 13 | except: |
12 | from mercurial import ui, hg | 14 | from mercurial import ui, hg |
13 | 15 | ||