mirror of
https://git.notmuchmail.org/git/notmuch
synced 2024-12-22 09:24:54 +01:00
python: simplify a path expression in setup.py
Signed-off-by: Justus Winter <4winter@informatik.uni-hamburg.de>
This commit is contained in:
parent
7190b0dbc2
commit
61cf962df8
1 changed files with 1 additions and 1 deletions
|
@ -4,7 +4,7 @@ import os
|
|||
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'
|
||||
|
|
Loading…
Reference in a new issue