]> git.notmuchmail.org Git - notmuch/commitdiff
python: simplify a path expression in setup.py
authorJustus Winter <4winter@informatik.uni-hamburg.de>
Sun, 29 Apr 2012 14:18:52 +0000 (16:18 +0200)
committerJustus Winter <4winter@informatik.uni-hamburg.de>
Sun, 29 Apr 2012 14:18:52 +0000 (16:18 +0200)
Signed-off-by: Justus Winter <4winter@informatik.uni-hamburg.de>
bindings/python/setup.py

index 8a7a89cf631e2fe9a750000d258fafed4ea09c3a..b46ac8dd07ca99b4985f145a2883e4f71274ed4a 100644 (file)
@@ -4,7 +4,7 @@ import os
 from distutils.core import setup
 
 # get the notmuch version number without importing the notmuch module
 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__)),
+version_file = os.path.join(os.path.dirname(__file__),
                             'notmuch', 'version.py')
 exec(compile(open(version_file).read(), version_file, 'exec'))
 assert __VERSION__, 'Failed to read the notmuch binding version number'
                             'notmuch', 'version.py')
 exec(compile(open(version_file).read(), version_file, 'exec'))
 assert __VERSION__, 'Failed to read the notmuch binding version number'