Fix comitter vs committer typos
authorGuido Günther <agx@sigxcpu.org>
Fri, 16 May 2014 17:51:26 +0000 (19:51 +0200)
committerGuido Günther <agx@sigxcpu.org>
Fri, 16 May 2014 17:51:56 +0000 (19:51 +0200)
Thanks: Sandro Tosi
Closes: #748339

docs/manpages/gbp-import-dsc.sgml
gbp/config.py
gbp/deb/git.py
gbp/git/modifier.py
gbp/git/repository.py
gbp/scripts/dch.py
tests/test_GitModifier.py

index 98f70e7..2d186ed 100644 (file)
         </term>
         <listitem>
           <para>When importing the Debian patch, use the author identity as
-          comitter identity.</para>
+          committer identity.</para>
         </listitem>
       </varlistentry>
       <varlistentry>
         </term>
         <listitem>
           <para>When importing the Debian patch, use the author date as
-          comitter date. <warning><para>Git will subtly misbehave if the
+          committer date. <warning><para>Git will subtly misbehave if the
           committer date of a commit is not later than or equal to all
           its parents.</para></warning></para>
         </listitem>
index fc31076..3fa5918 100644 (file)
@@ -249,10 +249,10 @@ class GbpOptionParser(OptionParser):
                   ("Set up tracking for remote branches, "
                    "default is '%(track)s'"),
              'author-is-committer':
-                  ("Use the authors's name also as the comitter's name, "
+                  ("Use the authors's name also as the committer's name, "
                    "default is '%(author-is-committer)s'"),
              'author-date-is-committer-date':
-                  ("Use the authors's date as the comitter's date, "
+                  ("Use the authors's date as the committer's date, "
                    "default is '%(author-date-is-committer-date)s'"),
              'create-missing-branches':
                   ("Create missing branches automatically, "
index 7a328be..6105fe7 100644 (file)
@@ -1,6 +1,6 @@
 # vim: set fileencoding=utf-8 :
 #
-# (C) 2011 Guido Günther <agx@sigxcpu.org>
+# (C) 2011,2014 Guido Günther <agx@sigxcpu.org>
 #    This program is free software; you can redistribute it and/or modify
 #    it under the terms of the GNU General Public License as published by
 #    the Free Software Foundation; either version 2 of the License, or
index bc98649..2452e0b 100644 (file)
@@ -41,7 +41,7 @@ class GitTz(datetime.tzinfo):
         return datetime.timedelta(0)
 
 class GitModifier(object):
-    """Stores authorship/comitter information"""
+    """Stores authorship/committer information"""
     def __init__(self, name=None, email=None, date=None):
         """
         @param name: the modifier's name
@@ -77,10 +77,10 @@ class GitModifier(object):
                              "datetime object or git raw date" % date)
 
     def _get_env(self, who):
-        """Get author or comitter information as env var dictionary"""
+        """Get author or committer information as env var dictionary"""
         who = who.upper()
         if who not in ['AUTHOR', 'COMMITTER']:
-            raise GitModifierError("Neither comitter nor author")
+            raise GitModifierError("Neither committer nor author")
 
         extra_env = {}
         if self.name:
@@ -130,7 +130,7 @@ class GitModifier(object):
 
     def get_committer_env(self):
         """
-        Get env vars for comitter information
+        Get env vars for committer information
 
         >>> g = GitModifier("foo", "bar")
         >>> g.get_committer_env()
index 10b9030..23f9482 100644 (file)
@@ -1408,7 +1408,7 @@ class GitRepository(object):
         @param parents: parents of this commit
         @param author: authorship information
         @type author: C{dict} with keys 'name' and 'email' or L{GitModifier}
-        @param committer: comitter information
+        @param committer: committer information
         @type committer: C{dict} with keys 'name' and 'email'
         """
         extra_env = {}
index f36f287..c034480 100644 (file)
@@ -66,7 +66,7 @@ def get_author_email(repo, use_git_config):
 
 def fixup_section(repo, git_author, options, dch_options):
     """
-    Fixup the changelog header and trailer's comitter and email address
+    Fixup the changelog header and trailer's committer and email address
 
     It might otherwise point to the last git committer instead of the person
     creating the changelog
index 1a28c0a..0a05d4b 100644 (file)
@@ -26,7 +26,7 @@ def test_author():
     >>> modifier._get_env('foo')
     Traceback (most recent call last):
     ...
-    GitModifierError: Neither comitter nor author
+    GitModifierError: Neither committer nor author
     >>> modifier['name']
     'foo'
     >>> modifier['email']