Changeset - 6e537f0a9961
[Not reviewed]
default
0 1 0
Mads Kiilerich - 6 years ago 2020-02-05 23:04:10
mads@kiilerich.com
py3: automatic migration with 2to3 -f execfile
1 file changed with 1 insertions and 1 deletions:
0 comments (0 inline, 0 general)
kallithea/lib/vcs/utils/fakemod.py
Show inline comments
 
@@ -6,8 +6,8 @@ def create_module(name, path):
 
    Returns module created *on the fly*. Returned module would have name same
 
    as given ``name`` and would contain code read from file at the given
 
    ``path`` (it may also be a zip or package containing *__main__* module).
 
    """
 
    module = imp.new_module(name)
 
    module.__file__ = path
 
    execfile(path, module.__dict__)
 
    exec(compile(open(path, "rb").read(), path, 'exec'), module.__dict__)
 
    return module
0 comments (0 inline, 0 general)