]> git.cworth.org Git - obsolete/notmuch-old/blobdiff - bindings/python/setup.py
python: Remove unused import from setup.py
[obsolete/notmuch-old] / bindings / python / setup.py
index 286fd1962187b6351036d54d547e69dd9c0b1016..8a7a89cf631e2fe9a750000d258fafed4ea09c3a 100644 (file)
@@ -1,13 +1,12 @@
 #!/usr/bin/env python
 
 import os
-import re
 from distutils.core import setup
 
 # get the notmuch version number without importing the notmuch module
 version_file = os.path.join(os.path.dirname(os.path.abspath(__file__)),
                             'notmuch', 'version.py')
-execfile(version_file)
+exec(compile(open(version_file).read(), version_file, 'exec'))
 assert __VERSION__, 'Failed to read the notmuch binding version number'
 
 setup(name='notmuch',