summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGuido Günther <g.guenther@tarent.de>2011-10-28 13:27:11 +0200
committerGuido Günther <agx@sigxcpu.org>2011-10-28 18:41:51 +0200
commita4aa2b78c7b68de7058e385fd20dfc53f9699eff (patch)
tree9d695d29f009ba6578b5885a292a4ca615e2c665
parent1fd6ddad71a2f95f254172dbdd176f06da15d9cb (diff)
Docstring fixups
-rw-r--r--gbp/git.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/gbp/git.py b/gbp/git.py
index 995d652..48e9366 100644
--- a/gbp/git.py
+++ b/gbp/git.py
@@ -836,7 +836,7 @@ class GitRepository(object):
def commit_dir(self, unpack_dir, msg, branch, other_parents=None,
author={}, committer={}):
"""
- Replace the current tip of branch 'branch' with the contents from 'unpack_dir'
+ Replace the current tip of branch I{branch} with the contents from I{unpack_dir}
@param unpack_dir: content to add
@type unpack_dir: C{str}
@@ -847,7 +847,7 @@ class GitRepository(object):
@param other_parents: additional parents of this commit
@type other_parents: C{list} of C{str}
@param author: author information to use for commit
- @type author: C{dict} with keys I{name}, I{email}, ${date}
+ @type author: C{dict} with keys I{name}, I{email}, I{date}
@param committer: committer information to use for commit
@type committer: C{dict} with keys I{name}, I{email}, I{date}
"""