summaryrefslogtreecommitdiff
path: root/six.py
diff options
context:
space:
mode:
Diffstat (limited to 'six.py')
-rw-r--r--six.py7
1 files changed, 7 insertions, 0 deletions
diff --git a/six.py b/six.py
index 212af14..6b3b9b0 100644
--- a/six.py
+++ b/six.py
@@ -105,6 +105,13 @@ class MovedModule(_LazyDescr):
return _import_module(self.mod)
def __getattr__(self, attr):
+ # Hack around the Django autoreloader. The reloader tries to get
+ # __file__ of every module in sys.modules. This doesn't work well if
+ # this MovedModule is for an module that is unavailable on this machine
+ # (like winreg on Unix systems). Thus, we pretend __file__ doesn't exist
+ # if the module hasn't been loaded yet. See issue #51.
+ if attr == "__file__" and self.mod not in sys.modules:
+ raise AttributeError
_module = self._resolve()
value = getattr(_module, attr)
setattr(self, attr, value)