Fix use requests HTTPError

This commit is contained in:
KennyDizi
2024-08-02 07:58:23 +07:00
parent fe4e642a47
commit aef9a04b32

View File

@ -125,7 +125,7 @@ class BitbucketServerProvider(GitProvider):
self.repo_slug,
path,
commit_id)
except requests.HTTPError as e:
except HTTPError as e:
get_logger().debug(f"File {path} not found at commit id: {commit_id}")
return file_content