diff --git a/roles/git/hooks/files/post-receive-secondaryarch b/roles/git/hooks/files/post-receive-secondaryarch index 189c69cfed..8d90a4209a 100755 --- a/roles/git/hooks/files/post-receive-secondaryarch +++ b/roles/git/hooks/files/post-receive-secondaryarch @@ -2,8 +2,8 @@ """ -This is a git hook meant to warn the secondary arch folks about package -that turned off building on secondary arches. +This is a git hook meant to warn the alternative arches folks about package +that turned off building on alternative arches. """ from __future__ import print_function @@ -139,7 +139,7 @@ def send_email(text, subject, to_mail): # pragma: no cover def run_as_post_receive_hook(): - ''' Check what was changed in the commit(s) and warn the secondary-arch + ''' Check what was changed in the commit(s) and warn the alternative-arch folks if either ExclusiveArch or ExcludesArch are changed. ''' for line in sys.stdin: @@ -169,7 +169,7 @@ def run_as_post_receive_hook(): print('Commit %s selected' % commit) if exclude_arch: - print('Notifying secondary-arch people') + print('Notifying alternative-arch people') package = '/'.join(abspath.rsplit(os.path.sep, 2)[-2:]) if DEBUG: print('Package:', package)