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
 
@@ -9,5 +9,5 @@ def create_module(name, path):
 
    """
 
    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)