Skip to content

Commit fa27988

Browse files
committed
Update boolean check
1 parent bb2e2b8 commit fa27988

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

github_backup/github_backup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -433,7 +433,7 @@ def get_github_repo_url(args, repository):
433433
return repository['ssh_url']
434434

435435
auth = get_auth(args, encode=False, for_git_cli=True)
436-
if auth and repository['private'] == True:
436+
if auth and repository['private'] is True:
437437
repo_url = 'https://{0}@{1}/{2}/{3}.git'.format(
438438
auth,
439439
get_github_host(args),

0 commit comments

Comments
 (0)