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

fix GitRepository revision function

This commit is contained in:
Josh 2012-03-06 10:47:34 -05:00
parent 5115ce2faf
commit fc528c0f65

View File

@ -52,8 +52,8 @@ 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()