You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Fix wrong handling of GitHub repository URLs with "git"
When you have a URL like 'https://github.com/suse-edge/suse-edge.github.io.git'
the splitting mechanism splitted at `.git` which gave wrong results.
Using `.rsplit('.git', 1)` instead of `.split('.git')` fixed the issue.
0 commit comments