diff options
-rw-r--r-- | cgitize/config.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/cgitize/config.py b/cgitize/config.py index c17f9a9..ce139ea 100644 --- a/cgitize/config.py +++ b/cgitize/config.py @@ -94,9 +94,9 @@ class GitHubSection(ServiceSection): def two_part_url_auth(username, password): - if username is None or password is None: - return None - return f'{username}:{password}' + if username is None or password is None: + return None + return f'{username}:{password}' class BitbucketSection(ServiceSection): |