Merge pull request #583 from d1ffuz0r/issue_524

fixed issue #524
This commit is contained in:
Armin Ronacher 2012-10-07 03:55:55 -07:00
commit c5f938bc55

View file

@ -44,7 +44,7 @@ class ExtensionImporter(object):
def install(self):
sys.meta_path[:] = [x for x in sys.meta_path if self != x] + [self]
def find_module(self, fullname, path=None):
def find_module(self, fullname):
if fullname.startswith(self.prefix):
return self