Some fixes to build scripts getting ready to handle the mobile version

Signed-off-by: Giulio Cesare Solaroli <giulio.cesare@clipperz.com>
This commit is contained in:
Giulio Cesare Solaroli
2012-03-17 14:26:08 +00:00
parent cf9c0c34e1
commit 65a7a7be3f
3 changed files with 22 additions and 8 deletions

View File

@@ -50,11 +50,11 @@ class Repository(object):
class GitRepository(Repository):
def revision (self):
return repository.refs['HEAD']
return self.repository.refs['HEAD']
def areTherePendingChanges (self):
return repository.is_dirty()
return self.repository.is_dirty()
#===================================================================