summaryrefslogtreecommitdiff
Unidiff
Diffstat (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):
6 try: 6 try:
7 from dulwich.repo import Repo 7 from git import Repo
8 8
@@ -11,3 +11,3 @@ def repositoryWithPath (path):
11 except ImportError: 11 except ImportError:
12 print "Failed to import dulwich, please install http://www.samba.org/~jelmer/dulwich/" 12 print "Failed to import git, please install http://gitorious.org/git-python"
13 except: 13 except:
@@ -54,3 +54,3 @@ class GitRepository(Repository):
54 def revision (self): 54 def revision (self):
55 return self.repository.refs['HEAD'] 55 return self.repository.head.commit.hexsha
56 56
@@ -58,3 +58,3 @@ class GitRepository(Repository):
58 def areTherePendingChanges (self): 58 def areTherePendingChanges (self):
59 return repository.is_dirty() 59 return self.repository.is_dirty()
60 60