aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorGuido Günther <agx@sigxcpu.org>2015-01-31 15:02:38 +0100
committerGuido Günther <agx@sigxcpu.org>2015-01-31 15:02:38 +0100
commit40580b0d3db22994b161846c6b7abff7fbc7a473 (patch)
tree216d646acecfe383c320d004f3c86cfd289b7411
parent229f259f8c205db5924eb3e276872ecc3d7eb370 (diff)
repository: fix head docstring
head is not a function so it doesn't _return_ anything Gbp-Dch: Ignore
-rw-r--r--gbp/git/repository.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/gbp/git/repository.py b/gbp/git/repository.py
index 65599213..c261e405 100644
--- 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