mirror of
https://github.com/qodo-ai/pr-agent.git
synced 2025-12-13 03:15:17 +00:00
Fix use requests HTTPError
This commit is contained in:
parent
fe4e642a47
commit
aef9a04b32
1 changed files with 1 additions and 1 deletions
|
|
@ -125,7 +125,7 @@ class BitbucketServerProvider(GitProvider):
|
||||||
self.repo_slug,
|
self.repo_slug,
|
||||||
path,
|
path,
|
||||||
commit_id)
|
commit_id)
|
||||||
except requests.HTTPError as e:
|
except HTTPError as e:
|
||||||
get_logger().debug(f"File {path} not found at commit id: {commit_id}")
|
get_logger().debug(f"File {path} not found at commit id: {commit_id}")
|
||||||
return file_content
|
return file_content
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue