projects
/
tools
/
git-buildpackage.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
229f259
)
repository: fix head docstring
author
Guido Günther
<agx@sigxcpu.org>
Sat, 31 Jan 2015 14:02:38 +0000
(15:02 +0100)
committer
Guido Günther
<agx@sigxcpu.org>
Sat, 31 Jan 2015 14:02:38 +0000
(15:02 +0100)
head is not a function so it doesn't _return_ anything
Gbp-Dch: Ignore
gbp/git/repository.py
patch
|
blob
|
history
diff --git
a/gbp/git/repository.py
b/gbp/git/repository.py
index 65599213819a6cd3e392fcb0ed025f07e160722e..c261e40518e2be5f46a098919738d639962f49f7 100644
(file)
--- a/
gbp/git/repository.py
+++ b/
gbp/git/repository.py
@@
-281,7
+281,7
@@
class GitRepository(object):
@property
def head(self):
- """
return the
SHA1 of the current HEAD"""
+ """SHA1 of the current HEAD"""
return self.rev_parse('HEAD')
#{ Branches and Merging