You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
plone.reload.xreload.Reloader.reload determines a wrong __name__ for top level modules. For those modules, pkgname is defined as None and the name is defined as '%s.%s' % (pkgname, modname). As a consequence, the objects in the temporary module get a wrong __module__ attribute (of the form None.<modname>) which causes later that the old objects are overridden (instead of updated).
plone.reload.xreload.Reloader.reload
determines a wrong__name__
for top level modules. For those modules,pkgname
is defined asNone
and the name is defined as'%s.%s' % (pkgname, modname)
. As a consequence, the objects in the temporary module get a wrong__module__
attribute (of the formNone.<modname>
) which causes later that the old objects are overridden (instead of updated).Recommendation: Replace
by
The text was updated successfully, but these errors were encountered: