XFE Git
XFE Studio Git
Git 首页 全局搜索
XFE 主站 文档 NuGet
公开
关注 0 Fork 0 Star 0
返回提交历史

XFEstudio/gpt4free

Fix create copilot comment

55695eda
Heiner Lohaus <hlohaus@users.noreply.github.com>
提交于

代码差异

1 个文件 +1 -1
Modified etc/tool/copilot.py +1 -1
@@ -239,7 +239,7 @@ def main():
239 239 if comments:
240 240 pull.create_review(body=review, comments=comments)
241 241 else:
242 pull.create_comment(body=review)
242 pull.create_issue_comment(body=review)
243 243 except Exception as e:
244 244 print(f"Error posting review: {e}")
245 245 exit(1)