You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The could not fork error on this line is misleading. pid will be non zero in the parent process, which means the fork was successful (if an error happens while forking, an OSError is raised). Here the parent process should either quit silently or display a more appropriate message.
The text was updated successfully, but these errors were encountered:
The could not fork error on this line is misleading.
pid
will be non zero in the parent process, which means the fork was successful (if an error happens while forking, an OSError is raised). Here the parent process should either quit silently or display a more appropriate message.The text was updated successfully, but these errors were encountered: