aboutsummaryrefslogtreecommitdiffhomepage
path: root/gbp
diff options
context:
space:
mode:
authorGuido Günther <agx@sigxcpu.org>2018-01-12 09:20:32 +0100
committerGuido Günther <agx@sigxcpu.org>2018-01-12 09:20:32 +0100
commit256b2089fec8ab8397faa7ad42dfa8b288d62099 (patch)
tree1ad8a7fe3cb2b884397040f98c9db29f9d6c0a49 /gbp
parentd686024dfd7d92dbc269df15bf643e10894cc655 (diff)
deb.source: Fix typo
Git-Dch: Ignore
Diffstat (limited to 'gbp')
-rw-r--r--gbp/deb/source.py9
1 files changed, 4 insertions, 5 deletions
diff --git a/gbp/deb/source.py b/gbp/deb/source.py
index 2952afe6..f1e2c569 100644
--- a/gbp/deb/source.py
+++ b/gbp/deb/source.py
@@ -51,10 +51,9 @@ class DebianSource(object):
"""
def __init__(self, vfs):
"""
- @param vfs: a class that implements I{GitVfs} interface or
- a directory (which will use the I{FileVfs} class. The
- directory must be the toplevel of a Debian source
- package.
+ @param vfs: a class that implements L{GitVfs} interface or a directory
+ (which will use the L{FileVfs} class. The directory must be the
+ toplevel of a Debian source package.
"""
self._changelog = None
self._control = None
@@ -85,7 +84,7 @@ class DebianSource(object):
"""
Check if package is releasable
- Debian's current practive is to check for UNRELEASED in the distribution.
+ Debian's current practice is to check for UNRELEASED in the distribution.
"""
return self.changelog.distribution != 'UNRELEASED'