summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTzafrir Cohen <tzafrir@debian.org>2014-12-23 16:17:50 +0200
committerTzafrir Cohen <tzafrir@debian.org>2015-03-26 14:21:52 +0200
commit362675cc28ff818547ad29ebccb324eb5551dee1 (patch)
treecdd6999606606f51eb69d940e113ac7d7c1fd737
parent320db0d24a3884c704b7d0d7c1356b5d704dcfb6 (diff)
Fix typo in pydoc: treeish's type twice
Fix a documentation typo that broke running epydoc at package build time. Signed-off-by: Tzafrir Cohen <tzafrir@debian.org>
-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 90b14e1..394343a 100644
--- a/gbp/git/repository.py
+++ b/gbp/git/repository.py
@@ -1015,7 +1015,7 @@ class GitRepository(object):
@param treeish: the treeish from which to check out files
@type treeish: C{str}
@param paths: list of files to checkout
- @type treeish: C{list} of C{str}
+ @type paths: C{list} of C{str}
"""
args = GitArgs("--quiet", treeish)
args.add_true(paths, '--', paths)