As code is now compatible with python3 it is showing compatibility errors with pickle file
As a resolution, if the python files are run in python3 always
Example: in file get-weekly-user-stats.sh until python weekly-user-activity.py org.fedoraproject.prod.irc.karma; do sleep 5; done
to until python3 weekly-user-activity.py org.fedoraproject.prod.irc.karma; do sleep 5; done
Now if a system has both the versions of python the code will only run in python3
@mattdm Please review my PR is this a valid solution or contribution to the project
As code is now compatible with python3 it is showing compatibility errors with pickle file
As a resolution, if the python files are run in python3 always
Example: in file get-weekly-user-stats.sh
until python weekly-user-activity.py org.fedoraproject.prod.irc.karma; do sleep 5; doneto
until python3 weekly-user-activity.py org.fedoraproject.prod.irc.karma; do sleep 5; doneNow if a system has both the versions of python the code will only run in python3
@mattdm Please review my PR is this a valid solution or contribution to the project