repository: fix head docstring
authorGuido Günther <agx@sigxcpu.org>
Sat, 31 Jan 2015 14:02:38 +0000 (15:02 +0100)
committerGuido 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

index 65599213819a6cd3e392fcb0ed025f07e160722e..c261e40518e2be5f46a098919738d639962f49f7 100644 (file)
@@ -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