summaryrefslogtreecommitdiff
path: root/scripts
authorJosh <jokajak@gmail.com>2012-03-07 03:09:32 (UTC)
committer Josh <jokajak@gmail.com>2012-03-07 03:09:32 (UTC)
commit24f7bfcbe317fe9f0d7de7cef3cb3b3b341c95a5 (patch) (side-by-side diff)
tree97493c18978af421dea50b3b0e9c11b5bec48f73 /scripts
parentfc528c0f65192419ee54c2dc620d55a778660790 (diff)
downloadclipperz-24f7bfcbe317fe9f0d7de7cef3cb3b3b341c95a5.zip
clipperz-24f7bfcbe317fe9f0d7de7cef3cb3b3b341c95a5.tar.gz
clipperz-24f7bfcbe317fe9f0d7de7cef3cb3b3b341c95a5.tar.bz2
switch from dulwich to git-python
this fixes the areTherePendingChanges check
Diffstat (limited to 'scripts') (more/less context) (ignore whitespace changes)
-rw-r--r--scripts/builder/repository.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/scripts/builder/repository.py b/scripts/builder/repository.py
index 7ea29bb..0efa10b 100644
--- a/scripts/builder/repository.py
+++ b/scripts/builder/repository.py
@@ -4,12 +4,12 @@
def repositoryWithPath (path):
try:
- from dulwich.repo import Repo
+ from git import Repo
repo = Repo(path)
result = GitRepository(repo, path)
except ImportError:
- print "Failed to import dulwich, please install http://www.samba.org/~jelmer/dulwich/"
+ print "Failed to import git, please install http://gitorious.org/git-python"
except:
from mercurial import ui, hg
@@ -52,11 +52,11 @@ class Repository(object):
class GitRepository(Repository):
def revision (self):
- return self.repository.refs['HEAD']
+ return self.repository.head.commit.hexsha
def areTherePendingChanges (self):
- return repository.is_dirty()
+ return self.repository.is_dirty()
#===================================================================