diff --git a/git_cache.py b/git_cache.py index f104a9bf6..c5f166e71 100755 --- a/git_cache.py +++ b/git_cache.py @@ -733,8 +733,8 @@ def CMDupdate_bootstrap(parser, args): print('Skipped populate step.') # Get the repo directory. - options, args = parser.parse_args(args) - url = args[0] + _, args2 = parser.parse_args(args) + url = args2[0] mirror = Mirror(url) mirror.update_bootstrap(options.prune, options.gc_aggressive) return 0