Skip to content
New issue

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

anim_utils uses dict.iteritems() and errors in Python 3 #203

Closed
chris-lesage opened this issue Jan 9, 2023 · 1 comment
Closed

anim_utils uses dict.iteritems() and errors in Python 3 #203

chris-lesage opened this issue Jan 9, 2023 · 1 comment
Assignees
Labels
bug Something isn't working

Comments

@chris-lesage
Copy link

Line 2329 of mgear/core/anim_utils.py

for frame, matchDict in matchMatrix_dict.iteritems():

Should be changed to:

for frame, matchDict in matchMatrix_dict.items():

Or, use a similar Python version check as utils.py on lines 115 to 119.

@miquelcampos miquelcampos self-assigned this Jan 11, 2023
@miquelcampos miquelcampos added the bug Something isn't working label Jan 11, 2023
@miquelcampos
Copy link
Member

Thanks for the heads up @chris-lesage I will check that

This issue was closed.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something isn't working
Projects
Status: 4.1.x
Development

No branches or pull requests

2 participants