summaryrefslogtreecommitdiff
path: root/scripts/builder/repository.py
Side-by-side diff
Diffstat (limited to 'scripts/builder/repository.py') (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
@@ -6,3 +6,3 @@ def repositoryWithPath (path):
try:
- from dulwich.repo import Repo
+ from git import Repo
@@ -11,3 +11,3 @@ def repositoryWithPath (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:
@@ -54,3 +54,3 @@ class GitRepository(Repository):
def revision (self):
- return self.repository.refs['HEAD']
+ return self.repository.head.commit.hexsha
@@ -58,3 +58,3 @@ class GitRepository(Repository):
def areTherePendingChanges (self):
- return repository.is_dirty()
+ return self.repository.is_dirty()