Skip to content

Commit

Permalink
Typos (double "you" and comma)
Browse files Browse the repository at this point in the history
[REF] github_connector: Fix typo "should not => does not" (OCA#6)
  • Loading branch information
zeroheure authored and victoralmau committed Nov 15, 2022
1 parent b86da69 commit f5f5989
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion github_connector/models/github.py
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
4 changes: 2 additions & 2 deletions github_connector/models/github_organization.py
Original file line number Diff line number Diff line change
Expand Up @@ -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")

Expand Down

0 comments on commit f5f5989

Please sign in to comment.