From 7ce61202e5cdecca29438d105600494415b5be3b Mon Sep 17 00:00:00 2001 From: Mathijs Jonker Date: Wed, 15 Apr 2015 12:21:58 +0200 Subject: [PATCH] Fixed indent --- bin/github-backup | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/bin/github-backup b/bin/github-backup index f593aa0..72bdcfd 100755 --- a/bin/github-backup +++ b/bin/github-backup @@ -359,9 +359,9 @@ def fetch_repository(name, remote_url, local_dir, skip_existing=False): return initalized = subprocess.call('git ls-remote ' + remote_url, stdout=FNULL, stderr=FNULL, shell=True) - if initalized == 128: - log_info("Skipping {} since it's not initalized".format(name)) - return + if initalized == 128: + log_info("Skipping {} since it's not initalized".format(name)) + return if clone_exists: log_info('Updating {} in {}'.format(name, local_dir))