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

Fix grammatical errors

This commit is contained in:
Ambrose Bonnaire-Sergeant 2020-12-04 00:42:39 -05:00 committed by GitHub
parent 4c33d9b114
commit 10f2ed8df8
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")