Skip to content

Commit c1d038d

Browse files
committed
deb.git: Use cannot rather than can not for clarity
"Can not" may in some cases mean something different than "cannot", use "cannot" to make sure there are no misunderstandings. Signed-off-by: Andrej Shadura <[email protected]>
1 parent c677255 commit c1d038d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

gbp/deb/git.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -326,9 +326,9 @@ def create_upstream_tarball_via_pristine_tar(self, source, output_dir, comp, ups
326326
gbp.log.debug("upstream signature state: %s" % upstream_signatures)
327327
commit, found_signature = self.get_pristine_tar_commit(source, component)
328328
if not commit and self.has_pristine_tar_branch():
329-
raise GitRepositoryError("Can not find pristine tar commit for archive '%s'" % output)
329+
raise GitRepositoryError("Cannot find pristine tar commit for archive '%s'" % output)
330330
if not found_signature and upstream_signatures.is_on():
331-
raise GitRepositoryError("Can not find requested upstream signature for archive '%s' in pristine tar commit." % output)
331+
raise GitRepositoryError("Cannot find requested upstream signature for archive '%s' in pristine tar commit." % output)
332332
try:
333333
signature = False if upstream_signatures.is_off() else found_signature
334334
self.pristine_tar.checkout(source.name, source.upstream_version, comp.type, output_dir,

0 commit comments

Comments
 (0)