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")