返回提交历史
Modified
etc/tool/copilot.py
+1
-1
XFEstudio/gpt4free
Fix create copilot comment
55695eda
代码差异
1 个文件
+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)