1
0
Fork 0
mirror of https://github.com/clockfort/GitHub-Backup.git synced 2025-03-09 00:00:03 +01:00

Merge pull request #41 from frenchy64/patch-1

Fix grammatical errors
This commit is contained in:
Steffen Vogel 2020-12-04 08:32:50 +01:00 committed by GitHub
commit 794bc0399b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -352,7 +352,7 @@ class RepositoryBackup(object):
if not os.access(os.path.dirname(self.dir), os.F_OK):
mkdir_p(os.path.dirname(self.dir))
if not os.access(config, os.F_OK):
LOGGER.info("Repo doesn't exists, lets clone it")
LOGGER.info("Repo doesn't exist, lets clone it")
self.clone_repo(self.url, self.dir)
else:
LOGGER.info("Repo already exists, let's try to update it instead")
@ -363,7 +363,7 @@ class RepositoryBackup(object):
if not os.access(os.path.dirname(self.wiki_dir), os.F_OK):
mkdir_p(os.path.dirname(self.wiki_dir))
if not os.access(config, os.F_OK):
LOGGER.info("Wiki repo doesn't exists, lets clone it")
LOGGER.info("Wiki repo doesn't exist, lets clone it")
self.clone_repo(self.wiki_url, self.wiki_dir)
else:
LOGGER.info("Wiki repo already exists, let's try to update it instead")