mirror of
https://github.com/josegonzalez/python-github-backup.git
synced 2025-12-06 00:28:01 +01:00
Add org check to avoid incorrect log output
This commit is contained in:
@@ -536,7 +536,7 @@ def retrieve_repositories(args, authenticated_user):
|
|||||||
template = 'https://{0}/user/repos'.format(
|
template = 'https://{0}/user/repos'.format(
|
||||||
get_github_api_host(args))
|
get_github_api_host(args))
|
||||||
else:
|
else:
|
||||||
if args.private:
|
if args.private and not args.organization:
|
||||||
log_warning('Authenticated user is different from user being backed up, thus private repositories cannot be accessed')
|
log_warning('Authenticated user is different from user being backed up, thus private repositories cannot be accessed')
|
||||||
template = 'https://{0}/users/{1}/repos'.format(
|
template = 'https://{0}/users/{1}/repos'.format(
|
||||||
get_github_api_host(args),
|
get_github_api_host(args),
|
||||||
|
|||||||
Reference in New Issue
Block a user