In a controller of one application I import classes from a module in another 
application using either of these syntaxes. 

from applications.another_app.modules.mymodule import MyClass 
MyClass = local_import('mymodule', app='another_app').MyClass 

Is there a better way to do that with the changes in 1.96.x? 

Reply via email to