Skip to content

Commit d35bd94

Browse files
committed
Doc: missing 'no' in error message about --open_pr
1 parent 9da9701 commit d35bd94

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

run.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -169,7 +169,7 @@ def main(args: ScriptArguments):
169169
def should_open_pr(args: ScriptArguments, info: Dict[str, Any], *, token: str="") -> bool:
170170
"""Does opening a PR make sense?"""
171171
if not info.get("submission"):
172-
logger.info("Not opening PR because submission was made.")
172+
logger.info("Not opening PR because no submission was made.")
173173
return False
174174
if info["exit_status"] != "submitted":
175175
logger.info("Not opening PR because exit status was %s and not submitted.", info["exit_status"])

0 commit comments

Comments
 (0)