Skip to content

Commit

Permalink
Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
corona10 committed Sep 21, 2023
1 parent 5c3ac68 commit a276bfd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Python/initconfig.c
Original file line number Diff line number Diff line change
Expand Up @@ -1716,8 +1716,8 @@ config_init_cpu_count(PyConfig *config)
return _PyStatus_OK();

error:
return _PyStatus_ERR("-X cpu_count=n option: n is missing or an invalid number, ");
"n must be greater than 0");
return _PyStatus_ERR("-X cpu_count=n option: n is missing or an invalid number, "
"n must be greater than 0");
}

static PyStatus
Expand Down

0 comments on commit a276bfd

Please sign in to comment.