1
0
mirror of http://git.whoc.org.uk/git/password-manager.git synced 2024-11-13 09:19:01 +01:00

Check to make sure dulwich is available and print error

This commit is contained in:
Josh 2012-03-06 10:44:48 -05:00
parent ba9eff02a0
commit 5115ce2faf

View File

@ -8,6 +8,8 @@ def repositoryWithPath (path):
repo = Repo(path)
result = GitRepository(repo, path)
except ImportError:
print "Failed to import dulwich, please install http://www.samba.org/~jelmer/dulwich/"
except:
from mercurial import ui, hg