We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 6834781 + 3977be4 commit da325c3Copy full SHA for da325c3
kcidev/subcommands/results.py
@@ -98,7 +98,7 @@ def get_folder_repository(git_folder):
98
if os.path.exists(dot_git_folder):
99
# Get remote origin url
100
git_config_path = os.path.join(dot_git_folder, "config")
101
- git_config = configparser.ConfigParser()
+ git_config = configparser.ConfigParser(strict=False)
102
git_config.read(git_config_path)
103
git_url = git_config.get('remote "origin"', "url")
104
# A way of standardize git url for API call
0 commit comments