diff options
Diffstat (limited to 'Mac/Modules/qd/qdsupport.py')
-rw-r--r-- | Mac/Modules/qd/qdsupport.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Mac/Modules/qd/qdsupport.py b/Mac/Modules/qd/qdsupport.py index d078ac6..28c2595 100644 --- a/Mac/Modules/qd/qdsupport.py +++ b/Mac/Modules/qd/qdsupport.py @@ -269,8 +269,8 @@ functions = [] gr_methods = [] bm_methods = [] #methods = [] -execfile(INPUTFILE) -execfile(EXTRAFILE) +exec(open(INPUTFILE).read()) +exec(open(EXTRAFILE).read()) # add the populated lists to the generator groups # (in a different wordl the scan program would generate this) |