Message 1 of 3
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
I am currently working on a python script and every time I make changes in the script, I need to re-open maya to run the updated module.
The reload function does not seems to be working.
I tried all 3 versions of python reloading command. Though it doesn't return any error while running the reload command, it also doesn't reload the module and runs the older version of code when I try to run the module :
I tried :
reload(moduleName)
import imp
imp.reload(moduleName)
import importlib
importlib.reload(moduleName)
Any idea why this could be happening?
Solved! Go to Solution.