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
Hi,
Thanks for the great stuff! I really like your library and hope it will solve all my problems...
In addition to the attribute error in issue #5 which can be worked around with just outcommenting line 46 in steppergroup.py,
there is an incorrect method call in the file pootles_utils/pootlestuff/webserv.py
pootles_utils/pootlestuff/webserv.py
Line 102 reads: while sthread.isAlive(): but this should be: while sthread.is_alive():
while sthread.isAlive():
while sthread.is_alive():
This is easily fixed!
Cheers, Bob
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Hi,
Thanks for the great stuff! I really like your library and hope it will solve all my problems...
In addition to the attribute error in issue #5 which can be worked around with just outcommenting line 46 in steppergroup.py,
there is an incorrect method call in the file
pootles_utils/pootlestuff/webserv.py
Line 102 reads:
while sthread.isAlive():
but this should be:
while sthread.is_alive():
This is easily fixed!
Cheers,
Bob
The text was updated successfully, but these errors were encountered: