From 5262f585c20795c2a1e5fc5a215cc88331f64620 Mon Sep 17 00:00:00 2001 From: Sylvain LE GAL Date: Thu, 10 Nov 2016 10:33:14 +0100 Subject: [PATCH] [FIX] typo --- github_connector/models/github_comment.py | 2 +- github_connector/models/github_issue.py | 2 +- github_connector/models/github_repository_branch.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/github_connector/models/github_comment.py b/github_connector/models/github_comment.py index 7ed7b4ca..292f68e5 100644 --- a/github_connector/models/github_comment.py +++ b/github_connector/models/github_comment.py @@ -12,7 +12,7 @@ try: import markdown except ImportError: - _logger.debug("Cannot import 'markdown' python librairy.") + _logger.debug("Cannot import 'markdown' python library.") class GithubComment(models.Model): diff --git a/github_connector/models/github_issue.py b/github_connector/models/github_issue.py index 6143e3a1..8e3257ca 100644 --- a/github_connector/models/github_issue.py +++ b/github_connector/models/github_issue.py @@ -12,7 +12,7 @@ try: import markdown except ImportError: - _logger.debug("Cannot import 'markdown' python librairy.") + _logger.debug("Cannot import 'markdown' python library.") class GithubIssue(models.Model): diff --git a/github_connector/models/github_repository_branch.py b/github_connector/models/github_repository_branch.py index c7273406..366d86e9 100644 --- a/github_connector/models/github_repository_branch.py +++ b/github_connector/models/github_repository_branch.py @@ -18,7 +18,7 @@ try: from git import Repo except ImportError: - _logger.debug("Cannot import 'git' python librairy.") + _logger.debug("Cannot import 'git' python library.") class GithubRepository(models.Model):