##// END OF EJS Templates
make sure module actually has __name__ attribute
Roshan Rao -
Show More
@@ -184,7 +184,7 b' class ModuleReloader(object):'
184 184 if not hasattr(module, '__file__') or module.__file__ is None:
185 185 return None, None
186 186
187 if getattr(module, '__name__', None) in ['__mp_main__', '__main__']:
187 if getattr(module, '__name__', None) in [None, '__mp_main__', '__main__']:
188 188 # we cannot reload(__main__) or reload(__mp_main__)
189 189 return None, None
190 190
General Comments 0
You need to be logged in to leave comments. Login now