use importlib.machinery instead of the (deprecated) imp
authorRalf Jung <post@ralfj.de>
Sun, 22 Sep 2013 08:39:28 +0000 (10:39 +0200)
committerRalf Jung <post@ralfj.de>
Sun, 22 Sep 2013 08:39:28 +0000 (10:39 +0200)
mass_build.py

index e9e372530966463cfc4165f391bf60570764f8e5..88db907bd01ebb41fdfab6eadca4aa66d684cfec 100755 (executable)
@@ -16,7 +16,7 @@
 # along with this program; if not, write to the Free Software
 # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
 
-import vcs, build_system, imp
+import vcs, build_system, importlib.machinery
 import argparse, os, sys, subprocess
 from collections import OrderedDict
 
@@ -81,7 +81,7 @@ if args.reset_source and not args.update:
 # load config
 old_val = sys.dont_write_bytecode
 sys.dont_write_bytecode = True
-config = imp.load_source('config', args.config).__dict__
+config = importlib.machinery.SourceFileLoader('config', args.config).load_module().__dict__
 sys.dont_write_bytecode = old_val
 
 # initialise variables holding the configuration