We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
On line 17 of __init__.py, the regex used to replace the student's main function is
__init__.py
main
re.sub("int\s+main", "int distro_main", ...)
This causes variables like int main_winner or int maintenance to be replaced. Suggest changing the regex to
int main_winner
int maintenance
re.sub(r"int\s+main\(", "int distro_main(", ...)
The text was updated successfully, but these errors were encountered:
No branches or pull requests
On line 17 of
__init__.py
, the regex used to replace the student'smain
function isThis causes variables like
int main_winner
orint maintenance
to be replaced. Suggest changing the regex toThe text was updated successfully, but these errors were encountered: