Strip whitespace from ALL the things.

This commit is contained in:
Jimmy Zelinskie 2014-11-24 16:07:38 -05:00
parent f6dd8b0a4d
commit 716d7a737b
171 changed files with 807 additions and 807 deletions

View file

@ -100,7 +100,7 @@ class BuildTrigger(object):
raise NotImplementedError
def activate(self, trigger_uuid, standard_webhook_url, auth_token, config):
"""
"""
Activates the trigger for the service, with the given new configuration.
Returns new configuration that should be stored if successful.
"""
@ -246,7 +246,7 @@ class GithubBuildTrigger(BuildTrigger):
gh_client = self._get_client(auth_token)
source = config['build_source']
try:
try:
repo = gh_client.get_repo(source)
# Find the first matching branch.
@ -381,7 +381,7 @@ class GithubBuildTrigger(BuildTrigger):
raise SkipRequestException()
if should_skip_commit(commit_message):
raise SkipRequestException()
raise SkipRequestException()
short_sha = GithubBuildTrigger.get_display_name(commit_sha)
@ -419,7 +419,7 @@ class GithubBuildTrigger(BuildTrigger):
branches = self.list_field_values(auth_token, config, 'branch_name')
tags = self.list_field_values(auth_token, config, 'tag_name')
return ([{'kind': 'branch', 'name': b} for b in branches] +
return ([{'kind': 'branch', 'name': b} for b in branches] +
[{'kind': 'tag', 'name': tag} for tag in tags])
if field_name == 'tag_name':