From 33f594819c796c585aa34c461b31976304a54ae5 Mon Sep 17 00:00:00 2001 From: micw Date: Wed, 4 Jul 2018 11:30:03 +0200 Subject: [PATCH] Add missing colon --- migrate_gitlab_to_gogs.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/migrate_gitlab_to_gogs.py b/migrate_gitlab_to_gogs.py index 995f521..0154242 100755 --- a/migrate_gitlab_to_gogs.py +++ b/migrate_gitlab_to_gogs.py @@ -126,7 +126,7 @@ for i in range(len(filtered_projects)): print('Could not create repo %s because of %s'%(src_name,json.loads(create_repo.text)['message'])) if args.skip_existing: print('\nSkipped') - else + else: if 'yes' != input('Do you want to skip this repo and continue with the next? (please answer yes or no) '): print('\nYou decided to cancel...') exit(1)