From ee07a3b4c68a0085d157879a7170e0532ce967dc Mon Sep 17 00:00:00 2001 From: Xavier Brochard Date: Sun, 28 Jan 2018 22:14:08 +0100 Subject: [PATCH] Typos (double "you" and comma) [REF] github_connector: Fix typo "should not => does not" (#6) --- github_connector/models/github.py | 2 +- github_connector/models/github_organization.py | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/github_connector/models/github.py b/github_connector/models/github.py index 9a8dacac..2c4a3990 100644 --- a/github_connector/models/github.py +++ b/github_connector/models/github.py @@ -129,7 +129,7 @@ def get_by_url(self, url, call_type, data=False): if response.status_code == 403: raise exceptions.Warning(_( "Unable to realize the current operation. The login '%s'" - " should not have the correct access rights.") % (self.login)) + " does not have the correct access rights.") % (self.login)) if response.status_code == 422: raise exceptions.Warning(_( "Unable to realize the current operation. Possible reasons:\n" diff --git a/github_connector/models/github_organization.py b/github_connector/models/github_organization.py index 399416a7..18df4e44 100644 --- a/github_connector/models/github_organization.py +++ b/github_connector/models/github_organization.py @@ -29,10 +29,10 @@ class GithubOrganization(models.Model): location = fields.Char(string='Location', readonly=True) ignored_repository_names = fields.Text( - string='Ignored Repositories', help="Set here repository names you" + string='Ignored Repositories', help="Set here repository names" " you want to ignore. One repository per line." " If set, the repositories will be created, but branches" - " synchronization, and source code download will be disabled." + " synchronization and source code download will be disabled." " Exemple:\n" "odoo-community.org\nOCB\nOpenUpgrade\n")